项目作者: Taysssir

项目描述 :
YOLO: Real-Time Object Detection
高级语言: Python
项目地址: git://github.com/Taysssir/YOLO-Object-Detection.git
创建时间: 2021-04-24T17:46:45Z
项目社区:https://github.com/Taysssir/YOLO-Object-Detection

开源协议:

下载


YOLO-Object-Detection

YOLO : Real-Time Object Detection

This repository implement a object detection application using YOLO model from darknet with dnn module of OpenCV

Download and Usage

  1. $ git clone https://github.com/Taysssir/YOLO-Object-Detection.git
  2. $ cd YOLO-Object-Detection
  3. $ pip install -r requirements.txt

Download weights of the model into YOLO-Object-Detection/cfg/

  1. wget https://pjreddie.com/media/files/yolov3.weights
  • input image:

    1. python object_detection_yolo.py --label=cfg/coco.names --cfg=cfg/yolov3.cfg --model=cfg/yolov3.weights --image=face1.jpg
  • input video:

    1. python object_detection_yolo.py --label=cfg/coco.names --cfg=cfg/yolov3-.cfg --model=cfg/yolov3.weights --video=Walk.mp4
  • Webcam:

    1. python object_detection_yolo.py --label=cfg/coco.names --cfg=cfg/yolov3.cfg --model=cfg/yolov3.weights