代码搜索结果
找到约 1,572 项符合
Calibration 的代码
export_calib_data.m
%% Export calibration data (corners + 3D coordinates) to
%% text files (in Willson-Heikkila's format or Zhang's format)
%% Thanks to Michael Goesele (from the Max-Planck-Institut) for the original
loading_stereo_calib.m
if exist('Calib_Results_stereo.mat')~=2,
fprintf(1,'\nStereo calibration file Calib_Results_stereo.mat not found!\n');
return;
end;
fprintf(1,'Loading stereo calibration results from Cal
go_calib_optim.m
%go_calib_optim
%
%Main calibration function. Computes the intrinsic andextrinsic parameters.
%Runs as a script.
%
%INPUT: x_1,x_2,x_3,...: Feature locations on the images
% X_1,X_2,X_3,..
show_stereo_calib_results.m
fprintf(1,'\nStereo calibration parameters:\n');
fprintf(1,'\n\nIntrinsic parameters of left camera:\n\n');
fprintf(1,'Focal Length: fc_left = [ %3.5f %3.5f ]
combine_calib.m
%%% Script that combines two calibration sets together.
dir;
name1 = input('Calibration file name #1: ','s');
name2 = input('Calibration file name #2: ','s');
load(name1);
n_ima_1 = n
stereo_gui.m
% stereo_gui
% Stereo Camera Calibration Toolbox (two cameras, internal and external calibration):
%
% It is assumed that the two cameras (left and right) have been calibrated with the pattern at t
go_calib_optim_no_read.m
%go_calib_optim
%
%Main calibration function. Computes the intrinsic andextrinsic parameters.
%Runs as a script.
%
%INPUT: x_1,x_2,x_3,...: Feature locations on the images
% X_1,X_2,X_3,..
calib_stereo.m
% calib_stereo
% Script for Calibrating a stereo rig (two cameras, internal and external calibration):
%
% It is assumed that the two cameras (left and right) have been calibrated with the pattern
load_stereo_calib_files.m
dir('*mat');
fprintf(1,'Loading of the individual left and right camera calibration files\n');
calib_file_name_left = input('Name of the left camera calibration file ([]=Calib_Results_left.mat
loading_calib.m
if ~exist('Calib_Results.mat'),
fprintf(1,'\nCalibration file Calib_Results.mat not found!\n');
return;
end;
fprintf(1,'\nLoading calibration results from Calib_Results.mat\n');
load Ca