how to segmentation mammographic images by seeds region growing

1 回表示 (過去 30 日間)
Salma Hassan
Salma Hassan 2016 年 3 月 24 日
コメント済み: Image Analyst 2016 年 3 月 24 日
i did this code to convert image to binary and make the digitization so i get it
if true
x=imread('mdb004.tif');
x=medfilt2(x);
x=im2bw(x,0.0706);
i2=imopen(i,strel('disk',50));
[bw, n]=bwlabel(i2,4);
i3=(bw==1);
image= x.*uint8(i8)
imshow(i3),figure, imshow(image)
end
% i didn't know how to segment it by region growing
  1 件のコメント
Image Analyst
Image Analyst 2016 年 3 月 24 日
I don't know what i8 is, but you already seem to have segmented out the breast. What else do you want?

サインインしてコメントする。

回答 (0 件)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by