项目作者: pskrunner14

项目描述 :
Realtime Object Detection using YOLO algorithm
高级语言: Python
项目地址: git://github.com/pskrunner14/yolo-detector.git
创建时间: 2018-07-07T20:31:02Z
项目社区:https://github.com/pskrunner14/yolo-detector

开源协议:MIT License

下载


Real-time Object Detection using YOLO

Real-time Object Detection using YOLO algorithm. You only look once (YOLO) is a state-of-the-art, real-time object detection system that is extremely fast and accurate. You can read more about it here.



Getting Started

In order to make detections, you will need to install the required python packages. I recommend using virtualenv for this one if you’re into that stuff:

  1. pip install -r requirements.txt

This project uses YAD2K helper to build the Darknet19 model using YOLO pre-trained weights and configuration which you will need to download in order to make detections on images:

  1. git clone https://github.com/allanzelener/YAD2K.git
  2. cd YAD2K
  3. wget http://pjreddie.com/media/files/yolo.weights
  4. wget https://raw.githubusercontent.com/pjreddie/darknet/master/cfg/yolo.cfg

Now, you can go ahead and build the Darknet19 model using:

  1. python yad2k.py yolo.cfg yolo.weights yolo_model.h5 --fully_convolutional

Once you have the pre-trained model yolo_model.h5, move it over to model_data/ dir in your project and start detecting all kinds of stuff in real-time:

  1. python main.py --realtime

You can also run the detection on images, all you need to do is provide the path of the image (results in images/out/):

  1. python main.py --image-path images/test/cars.jpg

And you’re done.

Build With

  • Python
  • Keras
  • TensorFlow
  • OpenCV

References

Credits