我正在尝试将我的Raspberry Pi MPEG Video流提供给名为Darknet的Ubuntu机器学习系统。

Darknet现在可以在其样本图像上正常运行,因此在此处运行良好。 My Pi将恒定的JPG流传输到本地URL http://192.168.1.xx。但是,每当我运行darknet命令对该流进行基本识别时,我得到的只是黑色图像结果。

这是我看到的命令:

./darknet detector test cfg/coco.data cfg/yolo.cfg yolo.weights http://192.168.1.xx/cam.jpg


有人知道会发生什么吗?

最佳答案

这可能很旧,但是以防万一其他人遇到相同的问题,“ test”选项用于图像,“ demo”用于视频,因此请尝试使用“ demo”,这样您的命令将是:

   ./darknet detector demo cfg/coco.data cfg/yolo.cfg yolo.weights http://192.168.1.xx/cam.jpg

07-26 00:45