Skip to content

Latest commit

 

History

History
49 lines (33 loc) · 1.47 KB

README.md

File metadata and controls

49 lines (33 loc) · 1.47 KB

Object Detection and Recognition using YOLO

Prerequisites

Usage

Copy the above config, weights and class names files into the same folder as this source code.

To detect object in image, just run:

python yolo_detect_image.py --image name_of_your_image_here

For example, with this input image:

YOLO input image


The output will be:

YOLO input image


Similarly, to detect object in video, just run:

python yolo_detect_video.py --video name_of_your_video_here

An video example can be seen below:

Please feel free to adjust CONF_THRESHOLD and NMS_THRESHOLD constants to suit your needs.

Full tutorial is available at http://dangminhthang.com/computer-vision/object-detection-and-recognition-using-yolo/