📄 plotresidua.m
字号:
function plotResidua(ste,X,Y)
%
% PLOTRESIDUA(ste,X,Y)
%
% Plots the residua of the single camera models, i.e. the residua of the
% projective mapping 3D --> 2 X 2D.
%
%
lp = ste.leftParam;
rp = ste.rightParam;
subplot(1,2,1)
plotResidua(ste.leftCam,X(:,[1,2]),Y,lp);
subplot(1,2,2)
plotResidua(ste.rightCam,X(:,[3,4]),Y,rp);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -