gpt4 book ai didi

python - 如何使用opencv将具有透明背景的图像更改为白色背景

转载 作者:太空宇宙 更新时间:2023-11-03 22:38:34 27 4
gpt4 key购买 nike

我正在尝试在 opencv 中定位轮廓,并使用具有透明背景的图像。将图像加载到内存并显示图像后,透明背景已重新着色为围绕图片焦点的黑白矩形。

image = cv.imread('C:/Users/H/Desktop/overhead.png')

cv.namedWindow('image', cv.WINDOW_NORMAL)
cv.imshow('image', image)
cv.waitKey(0)

是我目前使用的代码

图像周围没有黑色像素,而是有几个大的白色 block (被检测为轮廓)。

最佳答案

Convert White Pixels to Black in OpenCV python

我找到了合适的解决方案。

但是现在没有检测到右上角的 ~ 圆形。找到所有 3 个矩形。 tresh

gray = cv.cvtColor(image, cv.COLOR_BGR2GRAY)
blurred = cv.GaussianBlur(gray, (5, 5), 0)
thresh = cv.threshold(blurred, 103, 255, cv.THRESH_BINARY)[1]

cnts = cv.findContours(thresh.copy(), cv.RETR_EXTERNAL,
cv.CHAIN_APPROX_SIMPLE)
cnts = imutils.grab_contours(cnts)

# loop over the contours
for c in cnts:
# compute the center of the contour
M = cv.moments(c)
cX = int(M["m10"] / M["m00"])
cY = int(M["m01"] / M["m00"])

# draw the contour and center of the shape on the image
cv.drawContours(image, [c], -1, (0, 255, 0), 2)
cv.circle(image, (cX, cY), 7, (255, 255, 255), -1)
cv.putText(image, "center", (cX - 20, cY - 20),
cv.FONT_HERSHEY_SIMPLEX, 0.5, (255, 255, 255), 2)

# show the image
cv.namedWindow('image', cv.WINDOW_NORMAL)
cv.imshow('image', image)
cv.waitKey(0)

关于python - 如何使用opencv将具有透明背景的图像更改为白色背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56153632/

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