摘要:
本人使用的是python3.7+opencv4,而cv2.findContours()返回的值数量和类型依版本而异,比如 opencv3的findContours()返回三个值,第一个是图像,第二个是边缘,第三个是hierarchy--一种评价层级的系统。 ... 阅读全文
python出现 unindent does not match any outer indentation level、unexpected indent、inconsistent use of..
摘要:
问题如下: python肉眼看起来対得整整齐齐的代码为什么还会显示对不齐呢?具体问题像下面: IndentationError: unindent does not match any outer indentation levelIndentationErr... 阅读全文
摘要:
这句话意思是文件不存在,所以无法读取shape,所以首先确认一下是否文件路径出问题,例如我的 src = cv2.imread("./pictures/img.jpg") 打成了: src = cv2.imread("./picture/img.jpg") 少... 阅读全文