test.py: error: the following arguments are required: -i/--image, -t/--template
时间: 2024-05-04 21:22:25 浏览: 172
提示错误的图片
4星 · 用户满意度95%
这个错误提示表示你在运行 test.py 脚本时,没有提供必要的参数。请检查你的命令行是否正确提供了 -i/--image 和 -t/--template 参数,并且它们后面跟着相应的参数值。例如:
```
python test.py -i input_image.jpg -t template_image.jpg
```
其中 `input_image.jpg` 和 `template_image.jpg` 分别是你要处理的图片和模板图片的文件名。请根据实际情况修改这些参数值。
阅读全文