OpenCV的blob检测器未能检测到白色斑点。

6
我试图计算二值化后的白点数量,但我的代码似乎没有检测到任何东西。
输入图像 enter image description here
#Standard imports
#!/usr/bin/python

# Standard imports
import cv2
import numpy as np;

# Read and threshold image
im = cv2.imread("CopperSEM.tif", cv2.IMREAD_GRAYSCALE)
ret2, LocalTH1 = cv2.threshold(im,0,255,cv2.THRESH_BINARY+cv2.THRESH_OTSU) #Without Filtering

# Set up the detector with default parameters.
parameters = cv2.SimpleBlobDetector_Params()

#change Colors to White
parameters.filterByColor = True
parameters.blobColor = 255
parameters.filterByArea = True
parameters.minArea = 1500
parameters.filterByCircularity = True
parameters.minCircularity = 0.1
parameters.filterByConvexity = True
parameters.minConvexity = 0.87


#reset the detector
detector = cv2.SimpleBlobDetector_create(parameters)

# Detect blobs.
keypoints = detector.detect(LocalTH1)
print(len(keypoints)) #will print out the number of objects that were found since keypoints is a list?
# Draw detected blobs as red circles.
# cv2.DRAW_MATCHES_FLAGS_DRAW_RICH_KEYPOINTS ensures the size of the circle corresponds to the size of blob
im_with_keypoints = cv2.drawKeypoints(LocalTH1, keypoints, np.array([]), (0,0,255), cv2.DRAW_MATCHES_FLAGS_DRAW_RICH_KEYPOINTS)

# Show keypoints
cv2.imshow("Keypoints", im_with_keypoints)
cv2.waitKey(0)

我的输出如下所示。 在这里输入图片描述

参数.parameters.minArea = 1500 太大了。 - lbsweek
1个回答

4

这里是图片

不要使用斑点检测器,以下是一个可能更好的方法:

  • 将图像转换为灰度并中值模糊以平滑图像
  • 阈值化图像
  • 查找轮廓
  • 遍历轮廓并使用轮廓面积进行过滤

您可以使用最小阈值面积来过滤,以计算白色点的数量。通过减小阈值面积,您可以包括更小的点。增加面积仅隔离较大的白色斑块。如果轮廓通过此过滤器,则可以将其添加到白点列表中。

白色点的数量

91

import cv2

image = cv2.imread('1.png')

blur = cv2.medianBlur(image, 5)
gray = cv2.cvtColor(blur, cv2.COLOR_BGR2GRAY)
thresh = cv2.threshold(gray,180,255, cv2.THRESH_BINARY)[1]

cnts = cv2.findContours(thresh, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)
cnts = cnts[0] if len(cnts) == 2 else cnts[1]

min_area = 50
white_dots = []
for c in cnts:
    area = cv2.contourArea(c)
    if area > min_area:
        cv2.drawContours(image, [c], -1, (36, 255, 12), 2)
        white_dots.append(c)

print(len(white_dots))
cv2.imshow('thresh', thresh)
cv2.imshow('image', image)
cv2.imwrite('image.png', image)
cv2.waitKey()

如果len(cnts) == 2,那么cnts = cnts[0]的作用是什么?否则,cnts = cnts[1]的作用是什么? - coMPUTER sCIENCE sTUDENT
谢谢。你救了我。 - coMPUTER sCIENCE sTUDENT

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接