OpenCV错误:参数-p /-prototxt是必需的

时间:2018-09-13 16:44:54

标签: python python-2.7 opencv

在python 2.7中运行以下代码会给我这个错误:

用法:real_time_object_detection.py [-h] -p PROTOTXT -m模型[-c CONFIDENCE] real_time_object_detection.py:错误:参数-p /-prototxt是必需的

其中real_time_object_detection.py是正在运行的文件的名称。有什么建议吗?

from sklearn.tree import DecisionTreeClassifier

titanic_model = DecisionTreeClassifier()

上面的代码是我从这里获得的代码的一部分:

https://www.pyimagesearch.com/2017/09/18/real-time-object-detection-with-deep-learning-and-opencv/

Also a screenshot might help

1 个答案:

答案 0 :(得分:1)

程序文件中存在prototxt和caffemodel参数,使用此行在终端中运行它。

python object_tracker.py --prototxt deploy.prototxt --model res10_300x300_ssd_iter_140000.caffemodel