Debug1:error: the following arguments are required:

Debug:error: the following arguments are required:

  • 问题分析
  • 解决方法

问题分析

今天在跑多张图片融合代码:
Debug1:error: the following arguments are required:_第1张图片
遇到了bug:
在这里插入图片描述
代码是没问题的,原因是python没办法把“–images”,“–out”和它的路径(指代的东西)联系起来

解决方法

打开pychar的termina(以下是结果图)l:
Debug1:error: the following arguments are required:_第2张图片
输入以下代码:

python D:\SGreen_download\image-stitching-opencv\image_stitching_simple.py --images=images --output=output.png

解释:python D:\SGreen_download\image-stitching-opencv\image_stitching_simple.py --images=images --output=output.png

1、python切换环境,运行python文件
2、D:\SGreen_download\image-stitching-opencv\image_stitching_simple.py是指python文件所在的位置
3、–images=images和–output=output.png是把“–images”,“–out”和images文件夹,output.png联系起来

你可能感兴趣的:(python)