我在 Python 中找到了带有标准函数 cv2.findContours 的图像轮廓。
但是正如您所看到的,中间有一个点,我无法在不破坏轮廓线的情况下对其进行过滤。
我怎样才能删除这样一个误报集群?轮廓之外的那些并不重要。
gray = cv2.cvtColor(self.img, cv2.COLOR_RGB2GRAY)
_, mask = cv2.threshold(gray, thresh=152, maxval=162, type=cv2.THRESH_BINARY)
self.mask = cv2.bitwise_and(gray, mask)
self.contours, hierarchy = cv2.findContours(self.mask, cv2.RETR_EXTERNAL,cv2.CHAIN_APPROX_SIMPLE)
白板的微信
相关分类