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');
a=imread('sample.jpg');
Introduction GUI GUI(Graphical user interface):-Its basically a system of interactive visual components for a software. A GUI displays ...
Introduction About Python Python is a very popular general-purpose programming language which was created by Guido van Rossum, and released ...