📄 noisifycdlt.m
字号:
function [CDLTn, nIp, ndiff] = noisifyCDLT( CDLT, Sp, noiseF )%% CDLTn = noisifyCDLT( CDLT, Sp, noiseF )%% adds a random noise to the ideal CDLT matrix%% CDLT - 3 by 3 CDLT matrix% Sp - scene points coordinates of the coplanar calibration grid% noiseF - noise factor in percents (0 - 1)Ip = CDLT * hext( Sp )';Ip = hnorm( Ip' );[n m] = size( Ip );RM = noiseF * randn( n, m );nIp = Ip + RM;ndiff = nIp - Ip;PC(:,1:2) = Sp;PC(:,3:4) = nIp;CDLTn = estiCDLT( PC );
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -