Skip to content

Files

Latest commit

57b5cef · Jan 18, 2023

History

History

Object-Detection-using-YOLOv5-and-OpenCV-DNN-in-CPP-and-Python

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jul 22, 2022
Apr 12, 2022
Jul 22, 2022
Jan 18, 2023
Apr 12, 2022
Apr 12, 2022
Apr 12, 2022
Apr 12, 2022
Apr 12, 2022

Object Detection using YOLOv5 and OpenCV DNN (C++/Python)

This repository contains the code for Object Detection using YOLOv5 and OpenCV DNN in C++ and Python blogpost.

Introduction to YOLOv5 with OpenCV DNN

Install Dependancies

download

pip install -r requirements.txt

List of tutorials for installing OpenCV for C++ here.

Execution

Python

python yolov5.py

CMake C++ Linux

mkdir build
cd build
cmake ..
cmake --build .
./main

CMake C++ Windows

rmdir /s /q build
cmake -S . -B build
cmake --build build --config Release
.\build\Release\main.exe

AI Courses by OpenCV

Want to become an expert in AI? AI Courses by OpenCV is a great place to start.