代码搜索结果
找到约 1,572 项符合
Calibration 的代码
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
scanning_script.m
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%-- Main 3D Scanning Script
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
if exist('calib_cam_proj_optim.mat')~=2,
error('The scanner calibration file does no
startup.m
% Main camera calibration toolbox:
path(pwd,path);
format compact
cam_proj_calib.m
%%% This code is an additional code that helps doing projector calibration in 3D scanning setup.
%%% This is not a useful code for anyone else but me.
%%% I included it in the toolbox for illustrati
readme.txt
Camera Calibration Toolbox for Matlab
-------------------------------------
The complete documentation of this toolbox is available online at
http://www.vision.caltech.edu/bouguetj/calib_doc/