| 
									
										
										
										
											2009-08-22 06:23:24 +08:00
										 |  |  | /**********************************************************
 | 
					
						
							| 
									
										
										
										
											2009-11-09 12:46:34 +08:00
										 |  |  |  Written by Frank Dellaert, Nov 2009 | 
					
						
							|  |  |  |  **********************************************************/ | 
					
						
							| 
									
										
										
										
											2009-08-22 06:23:24 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <CppUnitLite/TestHarness.h>
 | 
					
						
							| 
									
										
										
										
											2009-11-09 12:46:34 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-18 03:34:57 +08:00
										 |  |  | #define GTSAM_MAGIC_KEY
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-16 09:16:59 +08:00
										 |  |  | #include "visualSLAM.h"
 | 
					
						
							| 
									
										
										
										
											2009-11-09 12:46:34 +08:00
										 |  |  | #include "Point3.h"
 | 
					
						
							|  |  |  | #include "Pose3.h"
 | 
					
						
							| 
									
										
										
										
											2009-08-22 06:23:24 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | using namespace std; | 
					
						
							|  |  |  | using namespace gtsam; | 
					
						
							| 
									
										
										
										
											2010-01-16 09:16:59 +08:00
										 |  |  | using namespace gtsam::visualSLAM; | 
					
						
							| 
									
										
										
										
											2009-08-22 06:23:24 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-09 12:46:34 +08:00
										 |  |  | // make cube
 | 
					
						
							| 
									
										
										
										
											2010-01-18 13:38:53 +08:00
										 |  |  | static Point3 | 
					
						
							|  |  |  | 	x000(-1, -1, -1), x001(-1, -1, +1), x010(-1, +1, -1), x011(-1, +1, +1), | 
					
						
							|  |  |  | 	x100(-1, -1, -1), x101(-1, -1, +1), x110(-1, +1, -1), x111(-1, +1, +1); | 
					
						
							| 
									
										
										
										
											2009-11-09 12:46:34 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | // make a realistic calibration matrix
 | 
					
						
							| 
									
										
										
										
											2010-01-18 13:38:53 +08:00
										 |  |  | static double fov = 60; // degrees
 | 
					
						
							|  |  |  | static size_t w=640,h=480; | 
					
						
							|  |  |  | static Cal3_S2 K(fov,w,h); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-23 01:36:57 +08:00
										 |  |  | static SharedGaussian sigma(noiseModel::Unit::Create(1)); | 
					
						
							| 
									
										
										
										
											2010-01-18 13:38:53 +08:00
										 |  |  | static shared_ptrK sK(new Cal3_S2(K)); | 
					
						
							| 
									
										
										
										
											2009-11-09 12:46:34 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | // make cameras
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ************************************************************************* */ | 
					
						
							| 
									
										
										
										
											2010-01-16 09:16:59 +08:00
										 |  |  | TEST( ProjectionFactor, error ) | 
					
						
							| 
									
										
										
										
											2009-11-09 12:46:34 +08:00
										 |  |  | { | 
					
						
							|  |  |  | 	// Create the factor with a measurement that is 3 pixels off in x
 | 
					
						
							| 
									
										
										
										
											2009-11-13 14:19:21 +08:00
										 |  |  | 	Point2 z(323.,240.); | 
					
						
							| 
									
										
										
										
											2009-11-09 12:46:34 +08:00
										 |  |  | 	int cameraFrameNumber=1, landmarkNumber=1; | 
					
						
							| 
									
										
										
										
											2010-01-16 09:16:59 +08:00
										 |  |  | 	boost::shared_ptr<ProjectionFactor> | 
					
						
							| 
									
										
										
										
											2010-01-18 13:38:53 +08:00
										 |  |  | 		factor(new ProjectionFactor(z, sigma, cameraFrameNumber, landmarkNumber, sK)); | 
					
						
							| 
									
										
										
										
											2009-11-09 12:46:34 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // For the following configuration, the factor predicts 320,240
 | 
					
						
							| 
									
										
										
										
											2010-01-16 09:16:59 +08:00
										 |  |  |   Config config; | 
					
						
							| 
									
										
										
										
											2010-01-14 10:58:29 +08:00
										 |  |  |   Rot3 R;Point3 t1(0,0,-6); Pose3 x1(R,t1); config.insert(1, x1); | 
					
						
							|  |  |  |   Point3 l1;  config.insert(1, l1); | 
					
						
							| 
									
										
										
										
											2010-01-16 09:16:59 +08:00
										 |  |  |   // Point should project to Point2(320.,240.)
 | 
					
						
							| 
									
										
										
										
											2010-01-18 13:38:53 +08:00
										 |  |  |   CHECK(assert_equal(Vector_(2, -3.0, 0.0), factor->unwhitenedError(config))); | 
					
						
							| 
									
										
										
										
											2009-11-09 12:46:34 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Which yields an error of 3^2/2 = 4.5
 | 
					
						
							| 
									
										
										
										
											2009-11-11 13:14:03 +08:00
										 |  |  |   DOUBLES_EQUAL(4.5,factor->error(config),1e-9); | 
					
						
							| 
									
										
										
										
											2009-11-09 12:46:34 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Check linearize
 | 
					
						
							|  |  |  |   Matrix Al1 = Matrix_(2, 3, 61.584, 0., 0., 0., 61.584, 0.); | 
					
						
							|  |  |  |   Matrix Ax1 = Matrix_(2, 6, 0., -369.504, 0., -61.584, 0., 0., 369.504, 0., 0., 0., -61.584, 0.); | 
					
						
							|  |  |  |   Vector b = Vector_(2,3.,0.); | 
					
						
							| 
									
										
										
										
											2010-01-23 01:36:57 +08:00
										 |  |  |   SharedDiagonal probModel1 = noiseModel::Unit::Create(2); | 
					
						
							| 
									
										
										
										
											2010-01-21 02:32:48 +08:00
										 |  |  |   GaussianFactor expected("l1", Al1, "x1", Ax1, b, probModel1); | 
					
						
							| 
									
										
										
										
											2009-11-13 00:16:32 +08:00
										 |  |  |   GaussianFactor::shared_ptr actual = factor->linearize(config); | 
					
						
							| 
									
										
										
										
											2009-11-09 12:46:34 +08:00
										 |  |  |   CHECK(assert_equal(expected,*actual,1e-3)); | 
					
						
							| 
									
										
										
										
											2009-11-11 13:14:03 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // linearize graph
 | 
					
						
							| 
									
										
										
										
											2010-01-16 09:16:59 +08:00
										 |  |  |   Graph graph; | 
					
						
							| 
									
										
										
										
											2009-11-11 13:14:03 +08:00
										 |  |  | 	graph.push_back(factor); | 
					
						
							| 
									
										
										
										
											2009-11-13 00:16:32 +08:00
										 |  |  | 	GaussianFactorGraph expected_lfg; | 
					
						
							| 
									
										
										
										
											2009-11-11 13:14:03 +08:00
										 |  |  | 	expected_lfg.push_back(actual); | 
					
						
							| 
									
										
										
										
											2009-11-13 00:16:32 +08:00
										 |  |  | 	GaussianFactorGraph actual_lfg = graph.linearize(config); | 
					
						
							| 
									
										
										
										
											2009-11-11 13:14:03 +08:00
										 |  |  | 	CHECK(assert_equal(expected_lfg,actual_lfg)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-08 08:40:17 +08:00
										 |  |  | 	// expmap on a config
 | 
					
						
							| 
									
										
										
										
											2009-11-11 13:14:03 +08:00
										 |  |  | 	VectorConfig delta; | 
					
						
							|  |  |  | 	delta.insert("x1",Vector_(6, 0.,0.,0., 1.,1.,1.)); | 
					
						
							|  |  |  | 	delta.insert("l1",Vector_(3, 1.,2.,3.)); | 
					
						
							| 
									
										
										
										
											2010-01-16 09:16:59 +08:00
										 |  |  | 	Config actual_config = expmap(config, delta); | 
					
						
							|  |  |  |   Config expected_config; | 
					
						
							| 
									
										
										
										
											2010-01-14 10:58:29 +08:00
										 |  |  |   Point3 t2(1,1,-5); Pose3 x2(R,t2); expected_config.insert(1, x2); | 
					
						
							|  |  |  |   Point3 l2(1,2,3); expected_config.insert(1, l2); | 
					
						
							| 
									
										
										
										
											2009-11-11 13:14:03 +08:00
										 |  |  |   CHECK(assert_equal(expected_config,actual_config,1e-9)); | 
					
						
							| 
									
										
										
										
											2009-11-09 12:46:34 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2009-08-22 06:23:24 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-27 10:49:58 +08:00
										 |  |  | /* ************************************************************************* */ | 
					
						
							| 
									
										
										
										
											2010-01-16 09:16:59 +08:00
										 |  |  | TEST( ProjectionFactor, equals ) | 
					
						
							| 
									
										
										
										
											2009-11-12 05:09:43 +08:00
										 |  |  | { | 
					
						
							|  |  |  | 	// Create two identical factors and make sure they're equal
 | 
					
						
							|  |  |  | 	Vector z = Vector_(2,323.,240.); | 
					
						
							|  |  |  | 	int cameraFrameNumber=1, landmarkNumber=1; | 
					
						
							| 
									
										
										
										
											2010-01-16 09:16:59 +08:00
										 |  |  | 	boost::shared_ptr<ProjectionFactor> | 
					
						
							| 
									
										
										
										
											2010-01-18 13:38:53 +08:00
										 |  |  | 	  factor1(new ProjectionFactor(z, sigma, cameraFrameNumber, landmarkNumber, sK)); | 
					
						
							| 
									
										
										
										
											2009-11-12 05:09:43 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-16 09:16:59 +08:00
										 |  |  | 	boost::shared_ptr<ProjectionFactor> | 
					
						
							| 
									
										
										
										
											2010-01-18 13:38:53 +08:00
										 |  |  | 		factor2(new ProjectionFactor(z, sigma, cameraFrameNumber, landmarkNumber, sK)); | 
					
						
							| 
									
										
										
										
											2009-11-12 05:09:43 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	CHECK(assert_equal(*factor1, *factor2)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-22 06:23:24 +08:00
										 |  |  | /* ************************************************************************* */ | 
					
						
							|  |  |  | int main() { | 
					
						
							|  |  |  | 	TestResult tr; | 
					
						
							|  |  |  | 	TestRegistry::runAllTests(tr); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | /* ************************************************************************* */ | 
					
						
							|  |  |  | 
 |