⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 crosspowerspectrum.m

📁 此为基于图像配准的傅立叶变换源代码
💻 M
字号:
function cps = crosspowerspectrum(in1,in2)
% USAGE : cps = crosspowerspectrum(in1,in2)
%
% function to calculate the PHASE-CORRELATION, hence function name may be a bit misleading!!
%
% Adam Wilmer, 3-9-02

F1 = fft2(in1);
F2 = fft2(in2);

% Create phase difference matrix
pdm = exp(i*(angle(F1)-angle(F2)));

% turn into cross phase-correlation
cps = real(ifft2(pdm));

% had problems with NaN's coming out so check this
if(mean(mean(isnan(cps)))>0.95)
    disp('PROBLEM ALERT: phasecorrelation contains a lot of NaNs (check FFTs exist as they cannot cope with certain inputs for some reason)')
    return
end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -