gpt4 book ai didi

python - 如何使用 opencv Python 检测椭圆并删除图像中的异常值

转载 作者:行者123 更新时间:2023-12-05 05:43:51 28 4
gpt4 key购买 nike

我正在尝试提取形成椭圆的点然后绘制它。但是由于一些可以被视为异常值的点,我得到了一个无效的椭圆掩码。像这样:

This is the image that I want to extract the ellipse from Here is what I got when I tried to link between the points to draw an ellipse Here is the final mask which is invalid form

这是我正在执行的代码,但它总是选择异常值

`cv2.rectangle(cleanedpartiallyimage, (0, 0), (1200, 10), (0, 0, 0), -1)

cv2.rectangle(cleanedpartiallyimage, (0, 0), (47, 1200), (0, 0, 0), -1)

image = cv2.cvtColor(cleanedpartiallyimage, cv2.COLOR_BGR2HSV) lower = np.array([85, 0, 20], dtype="uint8")
upper = np.array([95, 255, 255], dtype="uint8") mygray = cv2.inRange(image, lower, upper)

#--- Gaussian and Canny filters to make it easy to get the contours

blurred = cv2.GaussianBlur(mygray, (5, 5), 0) imageCanny = cv2.Canny(blurred, 0, 100, 0)

ret,th = cv2.threshold(imageCanny,127,255, 0)

#--- Find all the contours in the binary image ---
contours,hierarchy = cv2.findContours(th,3,1)
cnt = contours big_contour = [] max = 0 for i in cnt:

area = cv2.contourArea(i) #--- find the contour having biggest area ---
if(area > max): max = area big_contour = i

final = cv2.drawContours(imageCanny, big_contour, -1, (0,255,0), 3)

actualcontours, hierarchy = cv2.findContours(final, cv2.RETR_TREE, cv2.CHAIN_APPROX_NONE)

#---Removing side contour points

actualcontours = getactualcontours(actualcontours, 60)

empty = np.zeros((image.shape[0], image.shape[1], 3), np.uint8)

#---Removes linear contour points

ConvexHullPoints = contoursConvexHull(actualcontours)

#---Converts the points to Ellipse using fitEllipse

test41 = cv2.polylines(empty, [ConvexHullPoints], True, (255, 255, 255), 3)
imageCannyee = cv2.Canny(test41, 0, 100, 0)
contours, hierarchy = cv2.findContours(imageCannyee, cv2.RETR_TREE, cv2.CHAIN_APPROX_NONE)
for cont in contours:
if len(cont) < 20:
break
elps = cv2.fitEllipse(cont)
anotherempty = np.zeros((image.shape[0], image.shape[1], 3), np.uint8)
#---Drawing the ellipse into the empty mask
cv2.ellipse(anotherempty, elps, (255, 255, 255), 2) plt.imshow(anotherempty)

最佳答案

这里有一个简单的方法:

  1. 获取二值图像。我们load the image , 转换为 grayscale , Gaussian blur , 然后 Otsu's threshold获取二值图像。

  2. 膨胀形成单个轮廓。接下来我们使用 cv2.getStructuringElement 创建一个椭圆形内核使用 cv2.MORPH_ELLIPSE 参数和 dilate将小的单个轮廓组合成一个大的轮廓。

  3. 识别椭圆。 接下来我们 find contours , 使用 contour area 过滤然后用 cv2.fitEllipse() 检测椭圆.


enter image description here

import cv2

# Load image, grayscale, Gaussian blur, Otsu's threshold
image = cv2.imread('1.png')
gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
blur = cv2.GaussianBlur(gray, (3,3), 0)
thresh = cv2.threshold(blur, 0, 255, cv2.THRESH_BINARY + cv2.THRESH_OTSU)[1]

# Dilate with elliptical shaped kernel
kernel = cv2.getStructuringElement(cv2.MORPH_ELLIPSE, (3,3))
dilate = cv2.dilate(thresh, kernel, iterations=2)

# Find contours, filter using contour threshold area, draw ellipse
cnts = cv2.findContours(dilate, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)
cnts = cnts[0] if len(cnts) == 2 else cnts[1]
for c in cnts:
area = cv2.contourArea(c)
if area > 5000:
ellipse = cv2.fitEllipse(c)
cv2.ellipse(image, ellipse, (36,255,12), 2)

cv2.imshow('thresh', thresh)
cv2.imshow('dilate', dilate)
cv2.imshow('image', image)
cv2.waitKey()

关于python - 如何使用 opencv Python 检测椭圆并删除图像中的异常值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71739008/

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