Newer
Older
abgabensammlungSS15 / mr / Ub5 / TOOLBOX_calib / calib.m
@MaxXximus92 MaxXximus92 on 20 May 2015 280 bytes mr Ub5 ea UB5 initial
function calib(mode),

% calib(mode)
%
% Runs the Camera Calibration Toolbox.
% Set mode to 1 to run the memory efficient version.
% Any other value for mode will run the normal version (see documentation)


if nargin < 1,
    
    calib_gui;
    
else

    calib_gui(mode);

end;