Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 1.27 KB

README.md

File metadata and controls

43 lines (29 loc) · 1.27 KB

Object Detection with YOLO

A minor project on real time object detection using YOLO algorithm

Dependencies Required

  • OpenCV
  • NumPy
  • Tkinter
  • Pillow

Setup

  • Make sure you have python > 3.7 installed
  • pip install -r requirements.txt
  • Download the config and weight files from the links below and place them inside model/ folder and name them as yolov3.cfg and yolov3.weights respectively
  • python main.py

Model Info

Screenshots


Known Issues

  • GUI Window doesn't close after clicking any key / Esc key
  • Close objects or small objects detection may not be accurate
  • Limited number of classes (80) are identified

Improvements to be made

  • Bounding boxes should be coloured differently for different classes identified

References