卜若的代码笔记-matlab系列-matlab基础教程-第四章:为图像滤波

1.中值滤波

I1= medfilt2(J1,[5,5]); 

2.均值滤波

filterCore=fspecial('average',[5 5]);  
outputImage=imfilter(ImageData,filterCore,'replicate'); 

3.待定

猜你喜欢

转载自blog.csdn.net/qq_37080133/article/details/84925411