0

Matlab’ta Edge Detection Uygulaması

Matlab’ta Edge Detection Uygulaması için tıklayınız.
edge_detection

Matlab .m file

I=imread(‘deneme_resim.png’);
I=rgb2gray(I);
BW1 = edge(I,’prewitt’);
BW2= edge(I,’sobel’);
BW3= edge(I,’roberts’);
subplot (2,2,1);
imshow(I);
title(‘original’);
subplot (2,2,2);
imshow(BW1);
title(‘Prewitt’);
subplot (2,2,3);
imshow(BW2);
title(‘Sobel’);
subplot (2,2,4);
imshow(BW3);
title(‘Roberts’);

admin

Bir cevap yazın

E-posta hesabınız yayımlanmayacak. Gerekli alanlar * ile işaretlenmişlerdir