gpt4 book ai didi

python - 图像python opencv中的圆形轮廓检测

转载 作者:行者123 更新时间:2023-12-02 17:44:30 24 4
gpt4 key购买 nike

我正在尝试在下图中检测到圆圈。

enter image description here

所以我进行了颜色阈值处理,最终得到了这个结果。

enter image description here

由于删除了中心的线条,圆被分成许多小部分,因此如果我对此进行轮廓检测,则只能分别给我每个轮廓。

enter image description here

但是,有没有办法我可以以某种方式组合轮廓,这样我就可以得到一个圆,而不仅仅是一个圆?

这是我的颜色阈值代码:

blurred = cv2.GaussianBlur(img, (9,9), 9)

ORANGE_MIN = np.array((12, 182, 221),np.uint8)
ORANGE_MAX = np.array((16, 227, 255),np.uint8)

hsv_disk = cv2.cvtColor(blurred,cv2.COLOR_BGR2HSV)
disk_threshed = cv2.inRange(hsv_disk, ORANGE_MIN, ORANGE_MAX)

最佳答案

我猜想颜色分割的阈值有问题,所以这里的想法是生成一个二进制掩码。通过检查,您感兴趣的区域似乎比输入图像的其他区域明亮,因此可以对灰度图像简单地进行阈值处理以简化上下文。注意:您可以根据需要更改此步骤。满足阈值输出后,可以使用cv2.convexHull()获得轮廓的凸形。

还要记住选择最大的轮廓而忽略小的轮廓。以下代码可用于生成所需的输出:

import cv2
import numpy as np

# Loading the input_image
img = cv2.imread("/Users/anmoluppal/Downloads/3xGG4.jpg")
# Converting the input image to grayScale
img_gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
# Thresholding the image to get binary mask.
ret, img_thresh = cv2.threshold(img_gray, 145, 255, cv2.THRESH_BINARY)

# Dilating the mask image
kernel = np.ones((3,3),np.uint8)
dilation = cv2.dilate(img_thresh,kernel,iterations = 3)

# Getting all the contours
_, contours, __ = cv2.findContours(dilation, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_NONE)

# Finding the largest contour Id
largest_contour_area = 0
largest_contour_area_idx = 0

for i in xrange(len(contours)):
if (cv2.contourArea(contours[i]) > largest_contour_area):
largest_contour_area = cv2.contourArea(contours[i])
largest_contour_area_idx = i

# Get the convex Hull for the largest contour
hull = cv2.convexHull(contours[largest_contour_area_idx])

# Drawing the contours for debugging purposes.
img = cv2.drawContours(img, [hull], 0, [0, 255, 0])
cv2.imwrite("./garbage.png", img)

enter image description here

关于python - 图像python opencv中的圆形轮廓检测,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38318011/

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