⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 noisifycdlt.m

📁 一个很好用的摄像机标定程序
💻 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 + -