我们在复现或则跑项目时往往会遇到“设置参数”
# 设置参数
ap = argparse.ArgumentParser()
ap.add_argument("-i", "--image", required=True, help="path to input image")
ap.add_argument("-t", "--template", required=True, help="path to template OCR-A image")
args = vars(ap.parse_args())
如果required=True就说明这个参数是必须要设置的,我这里面需要设置的就是-i和-t的图片路径,进而进行后面图像处理操作,但是如何添加图片路径,从而让程序在加载中能找到它呢?
让我们进入PyCharm找到下面图片的地方选择“编辑配置”
然后会跳出下面这种页面
将我们所需要配置的路径添加到Parameters中去,点击应用和确定就好啦!
-i "D:/temporary/Test/template-matching-ocr/images/credit_card_03.png" -t "D:/temporary/Test/template-matching-ocr/ocr_a_reference.png"
然后就可以正常运行啦
结语
上面在PyCharm编辑配置和直接在命令行指定路径效果差不多,也就是说,上面程序也可以像下面这样运行
python ocr_template_match.py -i "D:/temporary/Test/template-matching-ocr/images/credit_card_03.png" -t "D:/temporary/Test/template-matching-ocr/ocr_a_reference.png"