?? estprojiter2.m
字號(hào):
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;
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -