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.
- Host: GitHub
- URL: https://github.com/rsgoksel/cpp-object-detection-yolov5-opencv
- Owner: RsGoksel
- License: mit
- Created: 2023-08-16T13:51:38.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-08-16T14:41:39.000Z (about 2 years ago)
- Last Synced: 2025-04-07T21:08:08.772Z (6 months ago)
- Topics: cpp, object-detection, onnx, onnx-models, yolov5
- Language: C++
- Homepage:
- Size: 2.55 MB
- Stars: 21
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
______________________________________________________________________________

______________________________________________________________________________