matlab
文章平均质量分 69
这个不开车的老司机
http://my.youkuaiyun.com/?ref=toolbar#
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
双目视觉误差与距离关系
clear;clc;B = 100;%mm,两个相机之间的距离,也叫基线fs = 6;%mm,相机的物理焦距ss = 4.8 ;%mm ,ccd芯片的块wid = 2048;%pix,相机的分辨率 宽pp = ss/widdd = 0.25;%pix,视差的精度,检测的精度f = fs/(pp);minZ = 1500;%离相机最近的距离maxZ = 2500;%theta = atan((wid/2)/f);fov = 2*theta *180/piminDepth = 0.5*原创 2021-03-30 17:09:04 · 3253 阅读 · 4 评论 -
Matlab2OpenCV
function Matlab2OpenCV( variable, fileName,varName, flag)% INPUTS:% variable: name of the current matrix% fileName: name of the output yaml file% flag: w for writing a new file, a for appending to the file% OUTPUTS:% ...原创 2021-03-30 14:41:33 · 227 阅读 · 0 评论 -
matlab umeyama
function [ R, t ] = umeyama( X, Y, plotResult )%UMEYAMA Corresponding point set registration with Umeyama method.%% [R, t] = umeyama(X, Y) returns the rotation matrix R and translation% vector t that approximate Y = R * X + t using least-squares esti.转载 2021-03-30 14:40:17 · 546 阅读 · 0 评论 -
eskf imu arhs
clear;clc;%rng(100);addpath(genpath(pwd));load_param;global params;dt = params.dt;[imudata,visdata] = vio_data_gen();l_imu = length(imudata);eskf.q = [1;0;0;0];eskf.bg=[0;0;0];eskf.g=[0;0;9...原创 2020-01-08 19:29:03 · 458 阅读 · 0 评论 -
allan 方差
clear;clc;rawdata = load('imulog_0.txt');t0 =6047*0.001*0.001;%rawdata = load('D:\\project\\cpp\\course2_hw_new\\vio_data_simulation\\build/imudata.txt');t0 = 1.0/200;N_sample = size(rawdata,1);...原创 2019-12-14 09:59:42 · 1698 阅读 · 0 评论 -
matlab 串口读写
%读取clear;clc;Ports = instrhwinfo('serial');lenP = length(Ports.SerialPorts);Ports.SerialPortsif(lenP<=1) fprintf('error: no serialPort found'); return;endif(lenP<3) fprintf('...原创 2019-08-15 14:08:25 · 971 阅读 · 0 评论
分享