《Matlab 图像处理375例》

来源:互联网 发布:音效增强软件下载 编辑:程序博客网 时间:2024/05/16 08:45

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 

 





原创粉丝点击