Skip to content

Latest commit

 

History

History

03_computer_vision

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

This day we will talk about opencv and basic image and video processing.

Make sure you install the requirements in the examples folder:

pip install -r requirements.txt

Using YOLO

Options:

  • A) Install Darknet: https://pjreddie.com/darknet/install/
  • A.1) For weird image formats, use it with OPENCV (optional). For this, modify Makefile. B) If using opencv and opencv-python, it comes already with darknet accessible

Weights and cfg

Get the weights from here:

cd extras
wget https://pjreddie.com/media/files/yolov3.weights

Get the yolov3.cfg from here:

cd extras
wget https://github.com/pjreddie/darknet/blob/master/cfg/yolov3.cfg

Check in the Darknet github for more cfgs.