这是一个初学者......使用圆形霍夫变换来找到圆形部分。为此,我最初在本地对图像进行阈值处理。
im=rgb2gray(imread('Ly7C8.png'));
imbw = thresholdLocally(im,[2 2]); % thresold localy with a 2x2 window
% preparing to find the circle
props = regionprops(imbw,'Area','PixelIdxList','MajorAxisLength','MinorAxisLength');
[~,indexOfMax] = max([props.Area]);
approximateRadius = props(indexOfMax).MajorAxisLength/2;
radius=round(approximateRadius);%-1:approximateRadius+1);
%find the circle using Hough trans.
h = circle_hough(edge(imbw), radius,'same');
[~,maxIndex] = max(h(:));
[i,j,k] = ind2sub(size(h), maxIndex);
center.x = j; center.y = i;
figure;imagesc(im);imellipse(gca,[center.x-radius center.y-radius 2*radius 2*radius]);
title('Finding the circle using Hough Trans.');
仅选择圆圈内的内容:
[y,x] = meshgrid(1:size(im,2),1:size(im,1));
z = (x-j).^2+(y-i).^2;
f = (z<=radius^2);
im=im.*uint8(f);
编辑:
寻找一个开始阈值图像的位置,通过查看直方图对其进行分割,找到它的第一个局部最大值,然后从那里迭代直到找到 2 个单独的段,使用 bwlabel:
p=hist(im(im>0),1:255);
p=smooth(p,5);
[pks,locs] = findpeaks(p);
bw=bwlabel(im>locs(1));
i=0;
while numel(unique(bw))<3
bw=bwlabel(im>locs(1)+i);
i=i+1;
end
imagesc(bw);
现在可以通过从圆圈中取出两个标记的部分来获得中间部分,剩下的就是中间部分(+一些光环)
bw2=(bw<1.*f);
但经过一些中值滤波后,我们得到了更合理的结果
bw2= medfilt2(medfilt2(bw2));
我们一起得到:
imagesc(bw+3*bw2);
最后一部分是真正的“又快又脏”,我敢肯定,使用您已经使用的工具,您将获得更好的结果...