无法在CMD中加载Python脚本的参数

时间:2017-09-20 06:32:53

标签: python windows cmd windows-7 opencv3.3

我在尝试从此Python脚本加载图片时遇到了麻烦。 它在Windows 10中正常运行。我不确定它为什么不能在我的Windows 7系统中运行。

from __future__ import print_function
import argparse
import cv2

ap = argparse.ArgumentParser()
ap.add_argument("-i", "--image", required = True,
            help = "Path to the image")
args = vars(ap.parse_args())

image = cv2.imread(args["image"])

在CMD中我跑,

showimage.py --image syiling.png
然后它返回

showimage.py error argument is required

enter image description here

0 个答案:

没有答案