Skip to content

Implementing object detection using YOLO Framework in Python

Notifications You must be signed in to change notification settings

RachelRamirez/Object-Detection-YOLO

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Object-Detection-YOLO

Implementing object detection using YOLO Framework in Python

You Only Look Once (YOLO) is a new and faster approach to object detection. Traditional systems repurposes classifiers to perform detection. Basically to detect any object, the system take a classifier for that object and then classifies its presence at various locations in the image. Other systems generate a potential bounding boxes in an image using region proposal methods and then run a classifier on these potential boxes. This results in a slightly efficient method. After classification, post — processing is used to refine the bounding boxes, eliminate duplicate detection, etc. Due to these complexities the system becomes slow and hard to optimize because each components have to be trained separately.

For more information/better understanding visit my blog. Link Part 1: https://medium.com/@pratheesh.27998/object-detection-part1-4dbe5147ad0a Link Part 2: https://medium.com/@pratheesh.27998/object-detection-part2-6a265827efe1

About

Implementing object detection using YOLO Framework in Python

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 99.6%
  • Python 0.4%