我正在尝试使用Yolo进行对象检测,我得到了这个错误
File "/home/canok/Desktop/YOLO2/darkflow/darkflow/net/yolo/predict.py", line 7, in <module>
from ...cython_utils.cy_yolo_findboxes import yolo_box_constructor
ImportError: No module named cy_yolo_findboxes我已经安装了cython :(
发布于 2019-04-13 07:45:36
首先使用这个python3 setup.py build_ext --就地
than python3 flow --model cfg/yolo.cfg --加载yolo.weights --演示record.avi --saveVideo
发布于 2019-04-13 07:45:22
尝试构建cython_utils ind darkflow文件夹
cd ./cython_utils
python3 setup.py build_ext --inplace
cd ..https://stackoverflow.com/questions/55659526
复制相似问题