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 Comment
Direct link to this comment
https://es.mathworks.com/matlabcentral/answers/275245-how-to-segmentation-mammographic-images-by-seeds-region-growing#comment_352823
Direct link to this comment
https://es.mathworks.com/matlabcentral/answers/275245-how-to-segmentation-mammographic-images-by-seeds-region-growing#comment_352823
Sign in to comment.