资源简介
冈萨雷斯 《数字图像处理matlab版》.源代码(含修订版)+源图像
代码片段和文件信息
function f = adpmedian(g Smax)
%ADPMEDIAN Perform adaptive median filtering.
% F = ADPMEDIAN(G SMAX) performs adaptive median filtering of
% image G. The median filter starts at size 3-by-3 and iterates up
% to size SMAX-by-SMAX. SMAX must be an odd integer greater than 1.
% Copyright 2002-2004 R. C. Gonzalez R. E. Woods & S. L. Eddins
% Digital Image Processing Using MATLAB Prentice-Hall 2004
% $Revision: 1.5 $ $Date: 2003/11/21 14:19:05 $
% SMAX must be an odd positive integer greater than 1.
if (Smax <= 1) | (Smax/2 == round(Smax/2)) | (Smax ~= round(Smax))
error(‘SMAX must be an odd integer > 1.‘)
end
[M N] = size(g);
% Initial setup.
f = g;
f(:) = 0;
alreadyProcessed = false(size(g));
% Begin filtering.
for k = 3:2:Smax
zmin = ordfilt2(g 1 ones(k k) ‘symmetric‘);
zmax = ordfilt2(g k * k ones(k k) ‘symmetric‘);
zmed = medfilt2(g [k k] ‘symmetric‘);
processUsingLevelB = (zmed > zmin) & (zmax > zmed) & ...
~alreadyProcessed;
zB = (g > zmin) & (zmax > g);
outputZxy = processUsingLevelB & zB;
outputZmed = processUsingLevelB & ~zB;
f(outputZxy) = g(outputZxy);
f(outputZmed) = zmed(outputZmed);
alreadyProcessed = alreadyProcessed | processUsingLevelB;
if all(alreadyProcessed(:))
break;
end
end
% Output zmed for any remaining unprocessed pixels. Note that this
% zmed was computed using a window of size Smax-by-Smax which is
% the final value of k in the loop.
f(~alreadyProcessed) = zmed(~alreadyProcessed);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 5120 2004-12-16 13:36 dipum_1.1.3_mcodes\0_Read_Me_First.txt
文件 1572 2004-12-16 13:36 dipum_1.1.3_mcodes\adpmedian.m
文件 651 2004-12-16 13:36 dipum_1.1.3_mcodes\average.m
文件 3235 2004-06-06 16:16 dipum_1.1.3_mcodes\bayesgauss (2).m
文件 3034 2004-12-16 13:36 dipum_1.1.3_mcodes\bayesgauss.m
文件 3063 2004-12-16 13:36 dipum_1.1.3_mcodes\bound2eight.m
文件 2477 2004-12-16 13:36 dipum_1.1.3_mcodes\bound2four.m
文件 2224 2004-12-16 13:36 dipum_1.1.3_mcodes\bound2im.m
文件 5776 2004-12-16 13:36 dipum_1.1.3_mcodes\boundaries.m
文件 3966 2004-12-16 14:36 dipum_1.1.3_mcodes\bsubsamp (2).m
文件 3966 2004-12-16 13:36 dipum_1.1.3_mcodes\bsubsamp.m
文件 592 2004-12-16 13:36 dipum_1.1.3_mcodes\changeclass.m
文件 2353 2004-12-16 13:36 dipum_1.1.3_mcodes\colorgrad.m
文件 2428 2004-12-16 13:36 dipum_1.1.3_mcodes\colorseg.m
文件 1177 2004-12-16 13:36 dipum_1.1.3_mcodes\compare.m
文件 1029 2010-05-26 16:33 dipum_1.1.3_mcodes\connectpoly.asv
文件 1040 2004-12-16 13:36 dipum_1.1.3_mcodes\connectpoly.m
文件 6128 2004-12-16 13:36 dipum_1.1.3_mcodes\Contents.m
文件 799 2004-12-16 13:36 dipum_1.1.3_mcodes\conwaylaws.m
文件 977 2004-12-16 13:36 dipum_1.1.3_mcodes\covmatrix.m
文件 687 2004-12-16 13:36 dipum_1.1.3_mcodes\dftcorr.m
文件 882 2004-12-16 13:36 dipum_1.1.3_mcodes\dftfilt.m
文件 736 2004-12-16 13:36 dipum_1.1.3_mcodes\dftuv.m
文件 6622 2004-12-16 13:36 dipum_1.1.3_mcodes\diameter.m
文件 874 2004-12-16 13:36 dipum_1.1.3_mcodes\endpoints.m
文件 1028 2004-12-16 13:36 dipum_1.1.3_mcodes\entropy.m
文件 8758 2004-12-16 13:36 dipum_1.1.3_mcodes\fchcode.m
文件 1454 2004-12-16 13:36 dipum_1.1.3_mcodes\frdescp.m
文件 992 2004-12-16 13:36 dipum_1.1.3_mcodes\fwtcompare.m
文件 447 2004-12-16 13:36 dipum_1.1.3_mcodes\gmean.m
............此处省略84个文件信息
- 上一篇:MBD代码生成详解
- 下一篇:数字彩色图像的哈夫曼编码与解码的matlab实现
相关资源
- matlab2019运动目标检测--数字图像处理
- 数字图像处理作业canny边缘检测坎尼边
- 数字图像处理 MATLAB 大作业 代码及其
- 遥感影像融合_数字图像处理的matlab程
- 数字图像处理使用matlab进行采样量化
- 傅里叶变化频谱图及频域滤波
- matlab数字图像处理之几何变换将图像
- matlab数字图像处理之图像几何变换
- 数字图像课程设计MATLAB实现简单找茬
- 数字图像处理空间域图像增强
- 基于MATLAB-GUI图形界面的数字图像处理
- 数字图像处理期末大作业.doc
- 数字图像处理|Matlab-数字图像编码实
- 遥感数字图像处理-matlab-主成份及穗帽
- 基于MATLAB数字图像处理的实现和仿真
- 数字图像处理实验报告北科大 matlab
- 遥感数字图像处理内含Matlab)代码
- RGB 、YUV、YIQ 和 YCrCb颜色空间转换的
- 数字图像处理常用测试图片part6
- 现代数字图像处理技术提高及应用案
- 精通MATLAB数字图像处理2015的源代码
- MATLAB数字图像处理外文文献
- 数字图像处理-matlab实验三次
- 基于MATLAB GUI的数字图像处理
- 数字图像处理车辆识别
- 基于Matlab的数字图像处理课程设计
- 数字图像处理(MATLAB版)
- 基于MATLAB的图像处理的课程设计论文
- MATLAB运动模糊图像复原
- 车牌识别与人脸定位matlab
评论
共有 条评论