-
Notifications
You must be signed in to change notification settings - Fork 543
Object Detection Effect (dependencies)
Shawn Conway edited this page Jan 4, 2022
·
8 revisions
In order to use the new Object Detection video effect, it requires a few files that are not shipped with OpenShot. These files can be downloaded, and saved into your C:\Users\USER\.openshot_qt\yolo\
folder. Be sure that you save them with the correct file names (listed below):
Required Files:
- yolov3.cfg: https://raw.githubusercontent.com/AlexeyAB/darknet/master/cfg/yolov3.cfg
- yolov3.weights: https://pjreddie.com/media/files/yolov3.weights
-
obj.names: https://raw.githubusercontent.com/pjreddie/darknet/master/data/coco.names
Rename coco.names to obj.names when you save the file to your hard drive.
Windows: You can also run these commands to download the files
curl -o %HOMEPATH%/.openshot_qt/yolo/yolov3.cfg https://raw.githubusercontent.com/AlexeyAB/darknet/master/cfg/yolov3.cfg
curl -o %HOMEPATH%/.openshot_qt/yolo/yolov3.weights https://pjreddie.com/media/files/yolov3.weights
curl -o %HOMEPATH%/.openshot_qt/yolo/obj.names https://raw.githubusercontent.com/pjreddie/darknet/master/data/coco.names
Linux & Mac: You can also run these commands to download the files
wget -c https://raw.githubusercontent.com/AlexeyAB/darknet/master/cfg/yolov3.cfg -O ~/.openshot_qt/yolo/yolov3.cfg
wget -c https://pjreddie.com/media/files/yolov3.weights -O ~/.openshot_qt/yolo/yolov3.weights
wget -c https://raw.githubusercontent.com/pjreddie/darknet/master/data/coco.names -O ~/.openshot_qt/yolo/obj.names
Want to help improve OpenShot (and make some friends in the process 🤗)? Please consider joining our open-source team by filling out this quick contributor form and introduce yourself! All volunteers are welcome, regardless of skills or skill level. Let's build something amazing!