• 大小: 375KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-04
  • 语言: 其他
  • 标签: 图像合成  

资源简介

图像合成(将两幅图片合成为1个), 测试可运行。

资源截图

代码片段和文件信息

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;
                e

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

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

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

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

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

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

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

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

     文件      73586  2009-04-05 19:23  fusion\test\f223.jpg

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

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

     文件       3385  2009-04-05 19:23  fusion\test\mgrads22con.jpg

     目录          0  2009-04-05 19:24  fusion\test

     目录          0  2009-04-05 19:24  fusion

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

               391825                    13


评论

共有 条评论