/yolotie

Messing with image recognition

Primary LanguageC

yolotie

Figuring out this whole image recognition thing

running yolo examples

git clone https://github.com/DaveyLaser/yolotie.git
cd yolotie/darknet
make
wget https://pjreddie.com/media/files/yolov3.weights
./darknet detect cfg/yolov3.cfg yolov3.weights data/dog.jpg

view example results

To view the results, open predictions.png, which was generated by the step above

real-time detection from webcam

Go to yolo for instructions on compiling with CUDA and OpenCV.