您的位置:首页 > 编程语言 > MATLAB

《Matlab 图像处理375例》

2017-07-23 09:54 113 查看
1 图像的插值    P153

2 膨胀,腐蚀,开运算,闭运算   P333

3 中值滤波   P216

  k1 =
medfilt2(J);                 %Median filtering of 3 * 3 templates 

  k1 =
medfilt2(J, [5, 5]);       %Median filtering of 5 * 5 templates 

  k1 =
medfilt2(J, [7, 7]);       %Median filtering of 7 * 7 templates 

  k1 =
medfilt2(J), [9, 9];       %Median filtering of 9 * 9 templates  

Matlab Read data from file:

     X = load(filepath1);   // X coordinate

    Y = load(filepath2);   // Y coordinate

                                   // Show (X, Y) by cftool -- Curve Fitting tool 

 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  medfilt2