DIP EXP -7 [ Region Based Segmentation ]

 a=imread('sample.jpg');

a=rgb2gray(a);
a1=a>180;
subplot(2,2,1);
imshow(a);
title('original image');
subplot(2,2,2);
imshow(a1);
title('region based segmentation');
Next Post Previous Post
No Comment
Add Comment
comment url