• 大小: 167KB
    文件类型: .zip
    金币: 2
    下载: 1 次
    发布日期: 2021-06-07
  • 语言: Matlab
  • 标签: 图像配  matla  

资源简介

matlab代码实现傅里叶梅林变换对两幅存在平移,旋转,缩放的图像进行配准

资源截图

代码片段和文件信息

% ---------------------------------------------------------------------
% Returns high-pass filter
function H = hipass_filter(htwd)
% hi-pass filter function
% ...designed for use with Fourier-Mellin stuff
res_ht = 1 / (ht-1);
res_wd = 1 / (wd-1);

eta = cos(pi*(-0.5:res_ht:0.5));
neta = cos(pi*(-0.5:res_wd:0.5));
X = eta‘*neta;

H=(1.0-X).*(2.0-X);
end

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-09-17 22:57  FourierMellin_registrate\
     文件         369  2018-09-17 22:33  FourierMellin_registrate\hipass_filter.m
     文件       66614  2008-04-27 20:44  FourierMellin_registrate\lena.bmp
     文件       66614  2008-04-27 20:57  FourierMellin_registrate\lena_cropped.bmp
     文件       66614  2008-04-27 20:57  FourierMellin_registrate\lena_cropped_rotated.bmp
     文件       66614  2008-04-27 21:00  FourierMellin_registrate\lena_cropped_rotated_shifted.bmp
     文件       66614  2008-04-27 20:59  FourierMellin_registrate\lena_cropped_shifted.bmp
     文件        9279  2018-09-17 22:45  FourierMellin_registrate\Register.m
     文件        2371  2018-09-17 22:23  FourierMellin_registrate\transformImage.m

评论

共有 条评论