如何在python-opencv上缩放图像



当我尝试在python中缩放照片时,它给了我这个错误:

IndentationError: unindent does not match any outer indentation level
我代码:

cv.SetImageROI(image, (pt1[0], pt1[1],pt2[0]-pt1[0], int((pt2[1] - pt1[1]) * 0.6)))

问题在于python中的缩进。

在python代码中,当在同一作用域中时,

必须对齐。

相关内容

  • 没有找到相关文章

最新更新