ご覧のとおり、図形とその白い境界線があります。形を白色で塗りつぶしたい。
入力は次のとおりです。
私はこの出力を取得したいと思います:
このコードを手伝ってくれる人はいますか? 黒の楕円が白に変わることはありません。どうもありがとう :]]
I = imread('untitled4.bmp');
Ibw = im2bw(I);
CC = bwconncomp(Ibw); %Ibw is my binary image
stats = regionprops(CC,'pixellist');
% pass all over the stats
for i=1:length(stats),
size = length(stats(i).PixelList);
% check only the relevant stats (the black ellipses)
if size >150 && size < 600
% fill the black pixel by white
x = round(mean(stats(i).PixelList(:,2)));
y = round(mean(stats(i).PixelList(:,1)));
Ibw = imfill(Ibw, [x, y]);
end;
end;
imshow(Ibw);