gpt4 book ai didi

python - SimpleBlobDetector - 隔离与周围不同的 Blob

转载 作者:太空宇宙 更新时间:2023-11-03 21:07:13 25 4
gpt4 key购买 nike

我正在使用 SimpleBlobDetector 来定位小数点和其他类型的标点符号,如下图所示,有时检测器会从文本的实心区域中拾取 Blob (中间 9 的底部),我正在寻找一种方法来通过 SimpleBlobDetector 或在后期处理中过滤掉这些检测。

有没有办法指定 Blob 必须与其背景颜色分开?也许是一种边缘检测方法?

感谢您的帮助。

检测器代码是:

    params = cv2.SimpleBlobDetector_Params()
params.filterByArea = True
params.minArea = 30
params.minThreshold = 50
params.maxThreshold = 200
params.filterByConvexity = True
params.minConvexity = 0.87
params.filterByColor = True
detector = cv2.SimpleBlobDetector_create(params)
detections = detector.detect(img)

带检测的输出图像

Output image with detections原文:

Original image

最佳答案

这里没有使用 SimpleBlobDetector,而是使用边缘/轮廓检测的解决方案,它允许更多的过滤控制。主要思想是

  • 将图像转换为灰度
  • 高斯模糊
  • 将主要特征与背景分开的阈值图像
  • 执行精明的边缘检测
  • 放大 canny 图像以增强和闭合轮廓
  • 使用最小/最大阈值区域查找图像中的轮廓并进行过滤

阈值图像

enter image description here

Canny边缘检测

enter image description here

扩张以增强轮廓

enter image description here

根据区域检测和过滤轮廓

enter image description here

输出结果

contours detected: 1

import numpy as np
import cv2

original_image = cv2.imread("1.jpg")
image = original_image.copy()
gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
blurred = cv2.GaussianBlur(gray, (3, 3), 0)
thresh = cv2.threshold(blurred, 110, 255,cv2.THRESH_BINARY)[1]
canny = cv2.Canny(thresh, 150, 255, 1)
kernel = cv2.getStructuringElement(cv2.MORPH_RECT, (5,5))
dilate = cv2.dilate(canny, kernel, iterations=1)

cv2.imshow("dilate", dilate)
cv2.imshow("thresh", thresh)
cv2.imshow("canny", canny)

# Find contours in the image
cnts = cv2.findContours(dilate.copy(), cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)
cnts = cnts[0] if len(cnts) == 2 else cnts[1]

contours = []

threshold_min_area = 1100
threshold_max_area = 1200

for c in cnts:
area = cv2.contourArea(c)
if area > threshold_min_area and area < threshold_max_area:
cv2.drawContours(original_image,[c], 0, (0,255,0), 3)
contours.append(c)

cv2.imshow("detected", original_image)
print('contours detected: {}'.format(len(contours)))
cv2.waitKey(0)

关于python - SimpleBlobDetector - 隔离与周围不同的 Blob ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56066247/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com