Added test of Cal3Unified and cleaned up a bit
parent
d0579dff50
commit
d42391d28d
|
@ -0,0 +1,7 @@
|
||||||
|
% test Cal3Unified
|
||||||
|
import gtsam.*;
|
||||||
|
|
||||||
|
K = Cal3Unified;
|
||||||
|
EXPECT('fx',K.fx()==1);
|
||||||
|
EXPECT('fy',K.fy()==1);
|
||||||
|
|
|
@ -1,17 +1,25 @@
|
||||||
% Test runner script - runs each test
|
% Test runner script - runs each test
|
||||||
|
|
||||||
% display 'Starting: testPriorFactor'
|
%% geometry
|
||||||
% testPriorFactor
|
display 'Starting: testCal3Unified'
|
||||||
|
testCal3Unified
|
||||||
|
|
||||||
display 'Starting: testValues'
|
%% linear
|
||||||
testValues
|
display 'Starting: testKalmanFilter'
|
||||||
|
testKalmanFilter
|
||||||
|
|
||||||
display 'Starting: testJacobianFactor'
|
display 'Starting: testJacobianFactor'
|
||||||
testJacobianFactor
|
testJacobianFactor
|
||||||
|
|
||||||
display 'Starting: testKalmanFilter'
|
%% nonlinear
|
||||||
testKalmanFilter
|
display 'Starting: testValues'
|
||||||
|
testValues
|
||||||
|
|
||||||
|
%% SLAM
|
||||||
|
display 'Starting: testPriorFactor'
|
||||||
|
testPriorFactor
|
||||||
|
|
||||||
|
%% examples
|
||||||
display 'Starting: testLocalizationExample'
|
display 'Starting: testLocalizationExample'
|
||||||
testLocalizationExample
|
testLocalizationExample
|
||||||
|
|
||||||
|
@ -36,6 +44,7 @@ testStereoVOExample
|
||||||
display 'Starting: testVisualISAMExample'
|
display 'Starting: testVisualISAMExample'
|
||||||
testVisualISAMExample
|
testVisualISAMExample
|
||||||
|
|
||||||
|
%% MATLAB specific
|
||||||
display 'Starting: testUtilities'
|
display 'Starting: testUtilities'
|
||||||
testUtilities
|
testUtilities
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue