/Object-Detection---Yolov3

This notebook implements an object detection based on a pre-trained model - YOLOv3. The model architecture is called a “DarkNet” and was originally loosely based on the VGG-16 model.

Primary LanguageJupyter NotebookApache License 2.0Apache-2.0

Object Detection with Yolov3

cover

Object detection is a computer vision task that involves both localizing one or more objects within an image and classifying each object in the image.

It is a challenging computer vision task that requires both successful object localization in order to locate and draw a bounding box around each object in an image, and object classification to predict the correct class of object that was localized. Yolo is a faster object detection algorithm in computer vision and first described by Joseph Redmon, Santosh Divvala, Ross Girshick and Ali Farhadi in 'You Only Look Once: Unified, Real-Time Object Detection'

This notebook implements an object detection based on a pre-trained model - YOLOv3 Pre-trained Weights (yolov3.weights) (237 MB). The model architecture is called a “DarkNet” and was originally loosely based on the VGG-16 model.

Predition

python detection.py
>>> Where is your image path?
>>> images/traffic.jpg

result

Details

For details of this project please check notebook

Reference