Skip to content

Latest commit

 

History

History
47 lines (36 loc) · 1.35 KB

File metadata and controls

47 lines (36 loc) · 1.35 KB

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.