• 大小: 376KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-06-03
  • 语言: Matlab
  • 标签: MATLAB  

资源简介

图像融合算法实现 MATLAB版 图像融合算法实现 MATLAB版 图像融合算法实现 MATLAB版图像融合算法实现 MATLAB版

资源截图

代码片段和文件信息

function xresult = kconsist(x)

% 一致性验证,即多数滤波器,如果x(rc)的3x3区域里有>=5个是i,则x(rc)=i
if ndims(x)==3
    xresult = zeros(size(x2)size(x3));
    xresult(:) = x(:);
    x = xresult;
else
    xresult = x;
end
    
[rowcol] = size(x);

blocks = 3;   % 3x3大小的窗口

thr = 5;


patch = (blocks-1)/2;

count = max(x(:));
x_count = zeros(1count);

for r=(patch+1):(row-patch)
    for c=(patch+1):(col-patch)
        x_count(:) = 0;
        rr = r-patch;
        while rr<=r+patch
            cc = c-patch;
            while cc<=c+patch
                x_count(x(rrcc)) = x_count(x(rrcc)) + 1;
                if x_count(x(rrcc)) >= thr  % 退出循环
                    xresult(rc) = x(rrcc);
                    rr = r+patch;
                    cc = c+patch;
                end
                cc = cc+1;
            end
            rr = rr + 1;
        end
    end
end


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        937  2004-01-05 21:23  358213matlab_fusion\fusion\kconsist.m

     文件       6219  2004-04-05 09:11  358213matlab_fusion\fusion\kfusion.m

     文件       1247  2004-01-06 10:43  358213matlab_fusion\fusion\kgrads.m

     文件        819  2003-12-31 20:38  358213matlab_fusion\fusion\kvar.m

     文件      94071  2004-04-04 22:59  358213matlab_fusion\fusion\test\1.jpg

     文件      66285  2004-04-04 23:00  358213matlab_fusion\fusion\test\2.jpg

     文件      67075  2004-04-04 23:00  358213matlab_fusion\fusion\test\3.jpg

     文件      73586  2004-04-05 09:15  358213matlab_fusion\fusion\test\f223.jpg

     文件      74491  2004-04-04 23:04  358213matlab_fusion\fusion\test\f323.jpg

     文件       3710  2004-04-05 08:56  358213matlab_fusion\fusion\test\mgrads22.jpg

     文件       3385  2004-04-05 09:15  358213matlab_fusion\fusion\test\mgrads22con.jpg

     目录          0  2004-04-05 09:13  358213matlab_fusion\fusion\test

     目录          0  2004-04-05 09:13  358213matlab_fusion\fusion

     目录          0  2008-11-08 14:33  358213matlab_fusion

----------- ---------  ---------- -----  ----

               392043                    15


评论

共有 条评论