Skip to main content

Library to easily test YOLOv3 models

Project description

Easy_Yolo - One liner Yolov3 object detection

Running on YOLO model on an image. Place .cfg, .weights and .names in same directory

Sample: from easy_yolo.yolo_img import YoloImg x = YoloImg('example.jpg', 'example.weights', 'example.cfg',example.names) x.run_model()

Running on YOLO model on a video. Place .cfg, .weights and .names in same directory

Sample: from easy_yolo.yolo_vid import Yolov3Video x = Yolov3Video('example.mp4', 'example.weights', 'example.cfg',example.names) x.run_model()

Running on YOLO model on a webcam. Place .cfg, .weights and .names in same directory

Sample: from easy_yolo.yolo_cam import Yolov3Camera For webcam: x = Yolov3Camera(0, 'example.weights', 'example.cfg',example.names) x.run_model()

For Youtube Livestream: x = Yolov3Camera('youtube_url', 'example.weights', 'example.cfg',example.names) x.run_model()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

easy_yolo-0.0.2.tar.gz (4.4 kB view hashes)

Uploaded Source

Built Distribution

easy_yolo-0.0.2-py3-none-any.whl (7.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page