【发布时间】:2017-05-26 07:30:07
【问题描述】:
使用 Python 和 OpenCV,我正在检测二进制掩码的轮廓:
import numpy as np
import cv2
import matplotlib.pyplot as plt
mask = np.zeros(20000, dtype=np.uint8).reshape(100, 200)
mask[5:-5,5:-5] = 255
mask[10:70,40:80] = 0
plt.subplot(121)
plt.imshow(mask, cmap='Greys_r', interpolation='none')
_, contours, hierarchy = cv2.findContours(mask.copy(),
cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE,
offset=(0, 0))
导致预期的行为:
plt.subplot(122)
cv2.drawContours(mask, contours, -1, (127, 127, 127), 2)
plt.imshow(mask, cmap='Greys_r', interpolation='none')
plt.show()
但是,我似乎无法理解完全激活面具的结果:
mask = np.ones(20000, dtype=np.uint8).reshape(100, 200)
mask *=255
_, contours, hierarchy = cv2.findContours(mask.copy(),
cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE,
offset=(0, 0))
print contours[0]
产生:
(1 1), (1 98), (198 98), (198 1)
而不是(0 0), (0 99), (199, 99), (199, 0)
为什么opencv findcontours 的行为是这样的,偏移量为1?
【问题讨论】:
-
通过准确执行你最后的 sn-p 代码,我得到 (0 0), (0 99), (199, 99), (199, 0)
标签: python opencv contour opencv-contour