وبلاگ تخصصی متلب و نقشه برداری

۱ مطلب با کلمه‌ی کلیدی «اعمال انواع فیلتر در متلب» ثبت شده است

برنامه را در mfile کپی کنید

clc
clear all
i=imread('moon.tif');
figure
imshow(i)
j=edge(i,'sobel');
t=edge(i,'canny');
m=edge(i,'log');
figure
imshow(j),title('sobel')
figure
imshow(t),title('canny')
figure
imshow(m),title('log')
subplot(2,2,1),imshow(i),title('asli'),subplot(2,2,2),imshow(j),title('sobel'),subplot(2,2,3),imshow(t),title('canny'),subplot(2,2,4),imshow(m),title('log')

جواد زارع زاده
۲۶ آبان ۹۴ ، ۱۲:۲۳ موافقین ۰ مخالفین ۰ ۰ نظر