我在尝试从此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