如何在python-opencv上缩放图像?

时间:2014-03-10 00:53:46

标签: 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)))

1 个答案:

答案 0 :(得分:0)

问题在于python中的缩进。

在python代码中,当在同一范围内时必须对齐。