import argparse
# construct the argument parse and parse the arguments
ap = argparse.ArgumentParser()
ap.add_argument("-i", "--image", required=True,
help="path to input image")
ap.add_argument("-p", "--prototxt", required=True,
help="path to Caffe 'deploy' prototxt file")
ap.add_argument("-m", "--model", required=True,
help="path to Caffe pre-trained model")
ap.add_argument("-c", "--confidence", type=float, default=0.5,
help="minimum probability to filter weak detections")
args = vars(ap.parse_args())
我正在通过 OpenCV 运行人脸识别示例。我此时使用“argparse”,并收到此错误。
args = vars(ap.parse_args())
从这段代码。
usage: ipykernel_launcher.py [-h] -i IMAGE -p PROTOTXT -m MODEL
[-c CONFIDENCE]
ipykernel_launcher.py: error: the following arguments are required: -i/--
image, -p/--prototxt, -m/--model
An exception has occurred, use %tb to see the full traceback.
SystemExit: 2
C:\Users\user\Anaconda3\lib\site-packages\IPython\core\interactiveshell.py:2918: UserWarning: To exit: use 'exit', 'quit', or Ctrl-D.
warn("To exit: use 'exit', 'quit', or Ctrl-D.", stacklevel=1)
我该如何解决?
这是我的电脑环境,使用Jupyter-notebook
- Python:3.6.4 64 位 [MSC v.1900 64 位 (AMD64)]
- IPython:6.2.1
- 操作系统:Windows 10 10.0.15063 SP0
- 参数解析:1.1
原文由 Kang Dong Ju 发布,翻译遵循 CC BY-SA 4.0 许可协议
如果不分享您尝试运行该文件的方式,这很难回答。该错误告诉您它没有找到运行文件时传入的必需参数。
由于您为 -i、-p 和 -m 参数指定了
required = True
,因此您必须始终传递它们,或者如果运行程序不需要它们,则将它们设为可选。