我无法设置和运行一个简单的暗流程序。Infact 甚至无法配置暗流库:
from darkflow.net.build import TFNet
==> ModuleNotFoundError: No module named 'darkflow'
我的目标是运行以下程序:
from darkflow.net.build import TFNet
import cv2
options = {"model": "cfg/yolo.cfg", "load": "bin/yolo.weights", "threshold": 0.1}
tfnet = TFNet(options)
imgcv = cv2.imread("./test/dog.jpg")
result = tfnet.return_predict(imgcv)
print(result
请建议步骤,以便我可以在 Jupyter Notebook(没有 GPU)上配置暗流并运行上面的代码