gpt4 book ai didi

matlab - 使用阈值检测对象

转载 作者:太空宇宙 更新时间:2023-11-03 20:14:20 24 4
gpt4 key购买 nike

我正在 matlab 中开发一个程序来检测一系列图像中的对象。我要检测的对象是一个红球。

enter image description here

首先,我尝试使用阈值从图像中分割出球,但我做不到。我无法摆脱球下的影子。任何想法如何摆脱球下的小部分?

enter image description here

我的第二个问题是,我想确定我正在寻找的物体是一个红球。我的代码会检测到任何红色物体,我想确保它是一个圆圈。

我的代码:

I1 = imread('images/B1.jpg'); % read image            

ID1 = im2double(I1); % convert to double
IDG1 = rgb2gray(ID1); % conver to gray scale

t = 112; % set a thresholding value

IT = im2bw(IDG1, t/255); % apply the threshold

I2 = ~IT; % get a nigative image

I3 = bwareaopen(I2,40); % get rid of small unwanted pixels

I4 = imclearborder(I3); % clear pixels of the borders

I5 = bwareaopen(I4,60); % get rid of small unwanted pixels

I6 = imfill(I5,'holes'); % fill the gap on the ball top part

I7 = imclearborder(I6); % get rid of small unwanted pixels

最佳答案

也许将图像从 RGB 转换为 HSV 是个好主意。

img = im2double(imread('http://i.stack.imgur.com/D3Zm7.jpg'));
imgHSV = rgb2hsv(img);

让我们显示 H 部分,它只包含颜色信息:

imshow(imgHSV(:,:,1))
colormap('hsv')
colorbar;

enter image description here

请注意,红色 部分分布在光谱的两端。让我们尝试使用经验值对其进行阈值处理(通过查看条形图,我们可以初步猜测一些“好”值):

BW = imgHSV(:,:,1) < 0.05 | imgHSV(:,:,1) > .15;

并显示结果:

imshow(BW);

enter image description here

没有阴影了! :)

关于matlab - 使用阈值检测对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23252114/

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