📄 dltpoints.m
字号:
function points = DLTpoints(DLT, icoords, z)%DEVELOPMENT PHASE%%get the point corresponding to the image positions icoords with the given z%coordinate%%DLT ... 3 x 4%icoords ... n x 2%default z = 0%%points = n x 3if (nargin < 3) z = 0;endn = size(icoords, 1);tempDLT = DLT(:, [1 2 4]);tempDLT(:, 3) = tempDLT(:, 3) + z * DLT(:, 3);points = applyDLT(inv(tempDLT), icoords);points = [points, z * ones(n, 1)];
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -