estprojiter2.m

来自「图像配准的源程序」· M 代码 · 共 16 行

M
16
字号
function M = estProjectiveIter(im1,im2,numIters,M,option)
%
% function M = estAffineIter2(im1,im2,numIters,M,option)
%
% Each iteration warps the images according to the previous
% estimate, and estimates the residual motion.

% Incrementally estimate the correct transform
for iter=1:numIters
   imWarp2=warpProjective2(im2,M);
   deltaM=estProjective(im1,imWarp2,option);
   M=deltaM*M;
   M = M/M(9);
end

return;

⌨️ 快捷键说明

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