出现错误ipykernel_launcher.py:错误:需要以下参数:-t //-template,-i //-images

时间:2019-01-03 08:10:49

标签: python-3.x

每当我尝试运行代码时,我都会出错

用法:ipykernel_launcher.py [-h] -t /模板-i /图像[-v可视化] ipykernel_launcher.py:错误:需要以下参数:-t //-模板,-i //-图像

将numpy导入为np 导入argparse 导入imutils 导入球 导入cv2 导入操作系统

os.chdir(r“ C:\ Users \ D \ Desktop”)

构造参数解析器并解析参数

尝试:

ap = argparse.ArgumentParser()
ap.add_argument("-t", "--template", required=True, help=  "testing.jpeg" )
ap.add_argument("-i", "--images", required=True,
help="intel.jpeg")
ap.add_argument("-v", "--visualize",
help="Flag indicating whether or not to visualize each iteration")
args = vars(ap.parse_args())
print("Ok")
template = cv2.imread(args["template"])
template = cv2.cvtColor(template, cv2.COLOR_BGR2GRAY)
template = cv2.Canny(template, 50, 200)
(tH, tW) = template.shape[:2]
cv2.imshow("Template", template)

除了:

print("Error is here")

0 个答案:

没有答案