Difference between revisions of "YOLO"

From Interaction Station Wiki
Jump to navigation Jump to search
Line 6: Line 6:
 
*Then, we need to install our modified version of Darknet:
 
*Then, we need to install our modified version of Darknet:
 
*[[Darknet Installation]]
 
*[[Darknet Installation]]
 +
 +
*Go to the directory:
 +
cd darknet
 +
 +
*Download the YOLO weights:
 +
wget https://pjreddie.com/media/files/yolov3.weights
  
 
== Using YOLO  ==
 
== Using YOLO  ==

Revision as of 22:59, 4 January 2019

Installation

  • Go to the directory:
cd darknet
  • Download the YOLO weights:
wget https://pjreddie.com/media/files/yolov3.weights

Using YOLO

  • Using YOLO with Darknet (GPU + OpenCV). Tested on Ubuntu 16.04
  • Go to the directory:
cd darknet
  • Run the detector (image):
./darknet detect cfg/yolov3.cfg yolov3.weights data/dog.jpg
  • Run the detector (video):
./darknet detector demo cfg/coco.data cfg/yolov3.cfg yolov3.weights <video file>
  • Run the detector (webcam):
./darknet detector demo cfg/coco.data cfg/yolov3.cfg yolov3.weights