gpt4 book ai didi

Python - 在图像上查找不同颜色的轮廓

转载 作者:行者123 更新时间:2023-12-03 18:44:03 26 4
gpt4 key购买 nike

我有以下图片:
enter image description here

我使用以下代码使用此代码勾勒出此图像中的所有圆形 Blob :

import numpy as np
import cv2

im = cv2.imread('im.jpg')

imgray = cv2.cvtColor(im,cv2.COLOR_BGR2GRAY)
ret,thresh = cv2.threshold(imgray,200,255,0)
contours, hierarchy = cv2.findContours(thresh,cv2.RETR_TREE,cv2.CHAIN_APPROX_SIMPLE)
cv2.drawContours(im,contours,-1,(0,0,255),1)

#(B,G,R)

cv2.imshow('image',im)
cv2.waitKey(0)
cv2.destroyAllWindows()

它产生了这个图像:
enter image description here

这对第一步来说很棒。但是我很难为蓝色 Blob 绘制不同颜色的轮廓。我尝试使用多个轮廓:
import numpy as np
import cv2

im = cv2.imread('im.jpg')

imgray = cv2.cvtColor(im,cv2.COLOR_BGR2GRAY)
ret,thresh = cv2.threshold(imgray,200,255,0)
ret, thresh2 = cv2.threshold(imgray,130,255,0)
contours, hierarchy = cv2.findContours(thresh,cv2.RETR_TREE,cv2.CHAIN_APPROX_SIMPLE)
contours2, hierarchy2 = cv2.findContours(thresh2,cv2.RETR_TREE,cv2.CHAIN_APPROX_SIMPLE)

cv2.drawContours(im,contours,-1,(0,0,255),1)
cv2.drawContours(im,contours2,-1,(0,255,0),1)

#(B,G,R)

cv2.imshow('image',im)
cv2.waitKey(0)
cv2.destroyAllWindows()

图像是这样的:
enter image description here

这种方法的第一个问题是它不能准确地只勾勒出蓝色 Blob 。此外,灵敏度等级在 threshold必须根据照明等情况为每个图像修改功能。有没有更流畅的方法来做到这一点?

最佳答案

基于 this :

import cv2
import numpy as np

img = cv2.imread("bluepink.jpg")
imghsv = cv2.cvtColor(img, cv2.COLOR_BGR2HSV)
lower_blue = np.array([110,50,50])
upper_blue = np.array([130,255,255])
mask_blue = cv2.inRange(imghsv, lower_blue, upper_blue)
_, contours, _ = cv2.findContours(mask_blue, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)
im = np.copy(img)
cv2.drawContours(im, contours, -1, (0, 255, 0), 1)
cv2.imwrite("contours_blue.png", im)

enter image description here

不理想,但似乎没有误报。您可以通过添加另一个接近黑色的颜色范围来改进它(因为真正的深色仅存在于那些蓝色 Blob 中)。也许通过一些额外的扩张侵 eclipse ,扩张侵 eclipse 永远不会有什么坏处。

关于Python - 在图像上查找不同颜色的轮廓,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45095734/

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