opencv 3 中的 findContours 和 drawContours 错误 beta/python
findContours and drawContours errors in opencv 3 beta/python
我尝试 运行 来自 here 的示例。
import numpy as np
import cv2
img = cv2.imread('final.jpg')
imgray = cv2.cvtColor(img,cv2.COLOR_BGR2GRAY)
ret,thresh = cv2.threshold(imgray,127,255,0)
contours, hierarchy = cv2.findContours(thresh,cv2.RETR_TREE,cv2.CHAIN_APPROX_SIMPLE)
cv2.drawContours(img, contours, -1, (0,255,0), 3)
错误是
Traceback (most recent call last):
File "E:\PC\opencv3Try\findCExample.py", line 7, in <module>
contours, hierarchy = cv2.findContours(thresh,cv2.RETR_TREE,cv2.CHAIN_APPROX_SIMPLE)
ValueError: too many values to unpack (expected 2)
如果我删除 "hierarchy" 错误出现在 drawContours:
TypeError: contours is not a numpy array, neither a scalar
如果我在 drawContours 中使用 contours[0]
cv2.error: E:\opencv\opencv\sources\modules\imgproc\src\drawing.cpp:2171: error: (-215) npoints > 0 in function cv::drawContours
这里可能有什么问题?
opencv 3这里略有changed syntax,return值不同:
cv2.findContours(image, mode, method[, contours[, hierarchy[, offset]]]) → image, contours, hierarchy
根据 berak 的回答,只需将 [-2:]
添加到 findContours()
调用即可使它们适用于 OpenCV 2.4 和 3.0:
contours, hierarchy = cv2.findContours(...)[-2:]
我以前遇到过同样的问题,我用这段代码来修复它。
反正我用的是 3.1。
(_,contours,_) = cv2.findContours(
thresh.copy(),
cv2.RETR_LIST,
cv2.CHAIN_APPROX_SIMPLE
)
根据 OpenCV 版本,cv2.findContours()
具有不同的 return 签名。
在 OpenCV 3.4.X, cv2.findContours()
returns 3 项
image, contours, hierarchy = cv.findContours(image, mode, method[, contours[, hierarchy[, offset]]])
在 OpenCV 2.X 和 4.1.X, cv2.findContours()
returns 2 项
contours, hierarchy = cv.findContours(image, mode, method[, contours[, hierarchy[, offset]]])
无论版本如何,您都可以轻松获取轮廓:
cnts = cv2.findContours(image, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)
cnts = cnts[0] if len(cnts) == 2 else cnts[1]
for c in cnts:
...
我尝试 运行 来自 here 的示例。
import numpy as np
import cv2
img = cv2.imread('final.jpg')
imgray = cv2.cvtColor(img,cv2.COLOR_BGR2GRAY)
ret,thresh = cv2.threshold(imgray,127,255,0)
contours, hierarchy = cv2.findContours(thresh,cv2.RETR_TREE,cv2.CHAIN_APPROX_SIMPLE)
cv2.drawContours(img, contours, -1, (0,255,0), 3)
错误是
Traceback (most recent call last):
File "E:\PC\opencv3Try\findCExample.py", line 7, in <module>
contours, hierarchy = cv2.findContours(thresh,cv2.RETR_TREE,cv2.CHAIN_APPROX_SIMPLE)
ValueError: too many values to unpack (expected 2)
如果我删除 "hierarchy" 错误出现在 drawContours:
TypeError: contours is not a numpy array, neither a scalar
如果我在 drawContours 中使用 contours[0]
cv2.error: E:\opencv\opencv\sources\modules\imgproc\src\drawing.cpp:2171: error: (-215) npoints > 0 in function cv::drawContours
这里可能有什么问题?
opencv 3这里略有changed syntax,return值不同:
cv2.findContours(image, mode, method[, contours[, hierarchy[, offset]]]) → image, contours, hierarchy
根据 berak 的回答,只需将 [-2:]
添加到 findContours()
调用即可使它们适用于 OpenCV 2.4 和 3.0:
contours, hierarchy = cv2.findContours(...)[-2:]
我以前遇到过同样的问题,我用这段代码来修复它。 反正我用的是 3.1。
(_,contours,_) = cv2.findContours(
thresh.copy(),
cv2.RETR_LIST,
cv2.CHAIN_APPROX_SIMPLE
)
根据 OpenCV 版本,cv2.findContours()
具有不同的 return 签名。
在 OpenCV 3.4.X, cv2.findContours()
returns 3 项
image, contours, hierarchy = cv.findContours(image, mode, method[, contours[, hierarchy[, offset]]])
在 OpenCV 2.X 和 4.1.X, cv2.findContours()
returns 2 项
contours, hierarchy = cv.findContours(image, mode, method[, contours[, hierarchy[, offset]]])
无论版本如何,您都可以轻松获取轮廓:
cnts = cv2.findContours(image, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)
cnts = cnts[0] if len(cnts) == 2 else cnts[1]
for c in cnts:
...