均值濾波爲何簡單處理圖像

@TOI=imread(‘E:\m\timg.jpg’);/輸入圖像/ I=rgb2gray(I);/圖像轉化爲二值圖/ W=fspecial(‘average’);/均值濾波器/ J=imfilter(I,W);/用濾波銳化/ subplot(2,1,1);/兩行一列第一幅/ imshow(I);/輸出圖像I/ title(‘原始圖’); subplot(2,1,2); imshow(J); t
相關文章
相關標籤/搜索