An open API service indexing awesome lists of open source software.

https://github.com/rsgoksel/cpp-object-detection-yolov5-opencv

C++ Object Detection with YOLOv5 involves implementing real-time and image object detection using the YOLOv5 model in the C++ programming language, enabling identification and localization of objects in images or video streams.
https://github.com/rsgoksel/cpp-object-detection-yolov5-opencv

cpp object-detection onnx onnx-models yolov5

Last synced: about 1 month ago
JSON representation

C++ Object Detection with YOLOv5 involves implementing real-time and image object detection using the YOLOv5 model in the C++ programming language, enabling identification and localization of objects in images or video streams.

Awesome Lists containing this project

README

          

# Object Detection with Yolov5 and OpenCV in C++
C++ Object Detection with YOLOv5 involves implementing real-time and image object detection using the YOLOv5 model in the C++ programming language, enabling identification and localization of objects in images or video streams.

## Requirements
* OpenCV 4.5.4 and above
* Python 3.8
* GCC-6.3.0-1
______________________________________________________________________________

Download ONNX model from **Releases** or [here](https://github.com/RsGoksel/Cpp-Object-Detection-Yolov5-OpenCV/releases/download/ONNX/yolov5s.onnx)
and put it on Models folder. Debug mode may crush the code so run it in *Release* mode in visual studio.

Repository consists of two parts. One focuses on object detection from images, and the other on object detection from video media. An ONNX model developed for object detection will be used in both sections

______________________________________________________________________________

![Repo (1)](https://github.com/RsGoksel/Cpp-Object-Detection-Yolov5-OpenCV/assets/80707238/e06d9855-9f75-44e5-865c-4d090495a2d0)

______________________________________________________________________________