Video Recognition Questions Using Darknet yolov2

Asked 1 years ago, Updated 1 years ago, 81 views

I'm a beginner trying to recognize videos.The environment uses Ubuntu 16.04 LTS.
I installed CUDA, OpenCV, and Darknet, respectively, and ran the code with mp4 files, but I got an error.
Is there any solution?Thank you for your cooperation.

https://pjreddie.com/darknet/yolo/

$./darknet detect cfg/yolo.cfg yolo.weights data/videoplayback.mp4
layer filters size input output
    0 conv32 3 x 3 / 1608 x 608 x 3 - > 608 x 608 x 32
    1 max 2 x 2 / 2 608 x 608 x 32 - > 304 x 304 x 32
    2 conv643 x 3 / 1304 x 304 x 32 - > 304 x 304 x 64
    3 max 2 x 2 / 2 304 x 304 x 64 - > 152 x 152 x 64

omission

   29 conv 1024 3 x 3/1 19 x 19 x 1280 - > 19 x 19 x 19 x 1024
   30 conv 425 1 x 1/19 x 19 x 1024 - > 19 x 19 x 425
   31 detection
mask_scale:Using default '1.000000'
Loading weights from yolo. weights... Done!
Cannot load image "data/videoplayback.mp4"
STB Reason:can't fopen

python c ubuntu opencv

2022-09-30 21:29

1 Answers

Try this command (last command is where your video is)
./darknet detector demo cfg/coco.data cfg/yolo.cfg yolo.weights video_file


2022-09-30 21:29

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.