| 
									
										
										
										
											2010-10-14 12:54:38 +08:00
										 |  |  | /* ----------------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  * GTSAM Copyright 2010, Georgia Tech Research Corporation,  | 
					
						
							|  |  |  |  * Atlanta, Georgia 30332-0415 | 
					
						
							|  |  |  |  * All Rights Reserved | 
					
						
							|  |  |  |  * Authors: Frank Dellaert, et al. (see THANKS for the full author list) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  * See LICENSE for the license information | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  * -------------------------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-22 06:23:24 +08:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * @file  testCal3_S2.cpp | 
					
						
							|  |  |  |  * @brief Unit tests for transform derivatives | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-20 01:23:19 +08:00
										 |  |  | #include <gtsam/CppUnitLite/TestHarness.h>
 | 
					
						
							|  |  |  | #include <gtsam/base/numericalDerivative.h>
 | 
					
						
							|  |  |  | #include <gtsam/geometry/Cal3_S2.h>
 | 
					
						
							| 
									
										
										
										
											2009-08-22 06:23:24 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | using namespace gtsam; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Cal3_S2 K(500, 500, 0.1, 640 / 2, 480 / 2); | 
					
						
							|  |  |  | Point2 p(1, -2); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-09 12:46:08 +08:00
										 |  |  | /* ************************************************************************* */ | 
					
						
							|  |  |  | TEST( Cal3_S2, easy_constructor) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	Cal3_S2 expected(369.504, 369.504, 0, 640 / 2, 480 / 2); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	double fov = 60; // degrees
 | 
					
						
							|  |  |  | 	size_t w=640,h=480; | 
					
						
							|  |  |  | 	Cal3_S2 actual(fov,w,h); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	CHECK(assert_equal(expected,actual,1e-3)); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2009-08-22 06:23:24 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-03-10 06:23:33 +08:00
										 |  |  | /* ************************************************************************* */ | 
					
						
							|  |  |  | TEST( Cal3_S2, calibrate) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	Cal3_S2 K1(500, 500, 0.1, 640 / 2, 480 / 2); | 
					
						
							|  |  |  | 	Point2 intrinsic(2,3); | 
					
						
							|  |  |  | 	Point2 expectedimage(1320.3, 1740); | 
					
						
							|  |  |  | 	Point2 imagecoordinates = K1.uncalibrate(intrinsic); | 
					
						
							|  |  |  | 	CHECK(assert_equal(expectedimage,imagecoordinates)); | 
					
						
							|  |  |  | 	CHECK(assert_equal(intrinsic,K1.calibrate(imagecoordinates))); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-22 06:23:24 +08:00
										 |  |  | /* ************************************************************************* */ | 
					
						
							| 
									
										
										
										
											2010-08-23 05:45:53 +08:00
										 |  |  | Point2 uncalibrate_(const Cal3_S2& k, const Point2& pt) { return k.uncalibrate(pt); } | 
					
						
							| 
									
										
										
										
											2009-08-22 06:23:24 +08:00
										 |  |  | TEST( Cal3_S2, Duncalibrate1) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-08-23 05:45:53 +08:00
										 |  |  | 	Matrix computed; K.uncalibrate(p, computed, boost::none); | 
					
						
							|  |  |  | 	Matrix numerical = numericalDerivative21(uncalibrate_, K, p); | 
					
						
							| 
									
										
										
										
											2009-11-09 12:46:08 +08:00
										 |  |  | 	CHECK(assert_equal(numerical,computed,1e-8)); | 
					
						
							| 
									
										
										
										
											2009-08-22 06:23:24 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ************************************************************************* */ | 
					
						
							|  |  |  | TEST( Cal3_S2, Duncalibrate2) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-08-23 05:45:53 +08:00
										 |  |  | 	Matrix computed; K.uncalibrate(p, boost::none, computed); | 
					
						
							|  |  |  | 	Matrix numerical = numericalDerivative22(uncalibrate_, K, p); | 
					
						
							| 
									
										
										
										
											2009-11-09 12:46:08 +08:00
										 |  |  | 	CHECK(assert_equal(numerical,computed,1e-9)); | 
					
						
							| 
									
										
										
										
											2009-08-22 06:23:24 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ************************************************************************* */ | 
					
						
							|  |  |  | TEST( Cal3_S2, assert_equal) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-11-09 12:46:08 +08:00
										 |  |  | 	CHECK(assert_equal(K,K,1e-9)); | 
					
						
							| 
									
										
										
										
											2009-08-22 06:23:24 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-09 12:46:08 +08:00
										 |  |  | 	Cal3_S2 K1(500, 500, 0.1, 640 / 2, 480 / 2); | 
					
						
							|  |  |  | 	CHECK(assert_equal(K,K1,1e-9)); | 
					
						
							| 
									
										
										
										
											2009-08-22 06:23:24 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ************************************************************************* */ | 
					
						
							|  |  |  | int main() { | 
					
						
							|  |  |  | 	TestResult tr; | 
					
						
							|  |  |  | 	return TestRegistry::runAllTests(tr); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | /* ************************************************************************* */ | 
					
						
							|  |  |  | 
 |