2011-12-01 09:59:39 +08:00
|
|
|
% Test runner script - runs each test
|
|
|
|
|
2015-01-15 23:20:22 +08:00
|
|
|
%% geometry
|
|
|
|
display 'Starting: testCal3Unified'
|
|
|
|
testCal3Unified
|
2014-12-05 02:28:20 +08:00
|
|
|
|
2015-01-15 23:20:22 +08:00
|
|
|
%% linear
|
|
|
|
display 'Starting: testKalmanFilter'
|
|
|
|
testKalmanFilter
|
2014-11-30 17:36:52 +08:00
|
|
|
|
2011-12-01 09:59:39 +08:00
|
|
|
display 'Starting: testJacobianFactor'
|
|
|
|
testJacobianFactor
|
|
|
|
|
2015-01-15 23:20:22 +08:00
|
|
|
%% nonlinear
|
|
|
|
display 'Starting: testValues'
|
|
|
|
testValues
|
|
|
|
|
|
|
|
%% SLAM
|
|
|
|
display 'Starting: testPriorFactor'
|
|
|
|
testPriorFactor
|
2011-12-01 09:59:39 +08:00
|
|
|
|
2015-01-15 23:20:22 +08:00
|
|
|
%% examples
|
2012-06-23 03:36:49 +08:00
|
|
|
display 'Starting: testLocalizationExample'
|
|
|
|
testLocalizationExample
|
|
|
|
|
2012-07-28 03:02:11 +08:00
|
|
|
display 'Starting: testOdometryExample'
|
|
|
|
testOdometryExample
|
|
|
|
|
|
|
|
display 'Starting: testPlanarSLAMExample'
|
|
|
|
testPlanarSLAMExample
|
|
|
|
|
2012-06-23 03:36:49 +08:00
|
|
|
display 'Starting: testPose2SLAMExample'
|
|
|
|
testPose2SLAMExample
|
|
|
|
|
|
|
|
display 'Starting: testPose3SLAMExample'
|
|
|
|
testPose3SLAMExample
|
|
|
|
|
|
|
|
display 'Starting: testSFMExample'
|
|
|
|
testSFMExample
|
|
|
|
|
|
|
|
display 'Starting: testStereoVOExample'
|
|
|
|
testStereoVOExample
|
|
|
|
|
2012-07-28 03:02:11 +08:00
|
|
|
display 'Starting: testVisualISAMExample'
|
|
|
|
testVisualISAMExample
|
|
|
|
|
2022-10-29 01:21:49 +08:00
|
|
|
display 'Starting: testProperties'
|
|
|
|
testProperties
|
|
|
|
|
2015-01-15 23:20:22 +08:00
|
|
|
%% MATLAB specific
|
2014-05-25 23:15:49 +08:00
|
|
|
display 'Starting: testUtilities'
|
|
|
|
testUtilities
|
|
|
|
|
2015-05-21 10:44:33 +08:00
|
|
|
if(exist('testSerialization.m','file'))
|
|
|
|
display 'Starting: testSerialization'
|
|
|
|
testSerialization
|
|
|
|
end
|
2014-11-14 06:59:51 +08:00
|
|
|
|
2011-12-01 09:59:39 +08:00
|
|
|
% end of tests
|
|
|
|
display 'Tests complete!'
|