normalizeline.m
来自「图像 里面常用到的矩阵运算」· M 代码 · 共 8 行
M
8 行
function Lhat = normalizeLine( L )
% Lhat = normalizeLine( L )
% returns a line with normalized direction. This means that
% the dot product of a point with w=1 gives the distance.
n = sqrt( L(1,:).^2 + L(2,:).^2 );
Lhat = L ./ repmat( n, 3, 1 );
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?