| 
									
										
										
										
											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 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  * -------------------------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-27 05:21:15 +08:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * @file PlanarSLAMExample.cpp | 
					
						
							| 
									
										
										
										
											2011-08-19 21:11:04 +08:00
										 |  |  |  * @brief Simple robotics example using the pre-built planar SLAM domain | 
					
						
							| 
									
										
										
										
											2010-08-27 05:21:15 +08:00
										 |  |  |  * @author Alex Cunningham | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <cmath>
 | 
					
						
							|  |  |  | #include <iostream>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // pull in the planar SLAM domain with all typedefs and helper functions defined
 | 
					
						
							|  |  |  | #include <gtsam/slam/planarSLAM.h>
 | 
					
						
							| 
									
										
										
										
											2010-10-18 02:52:52 +08:00
										 |  |  | #include <gtsam/nonlinear/NonlinearOptimization-inl.h>
 | 
					
						
							| 
									
										
										
										
											2010-08-27 05:21:15 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | using namespace std; | 
					
						
							|  |  |  | using namespace gtsam; | 
					
						
							| 
									
										
										
										
											2012-01-31 06:00:13 +08:00
										 |  |  | using namespace planarSLAM; | 
					
						
							| 
									
										
										
										
											2010-08-27 05:21:15 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * In this version of the system we make the following assumptions: | 
					
						
							|  |  |  |  *  - All values are axis aligned | 
					
						
							|  |  |  |  *  - Robot poses are facing along the X axis (horizontal, to the right in images) | 
					
						
							|  |  |  |  *  - We have bearing and range information for measurements | 
					
						
							|  |  |  |  *  - We have full odometry for measurements | 
					
						
							|  |  |  |  *  - The robot and landmarks are on a grid, moving 2 meters each step | 
					
						
							|  |  |  |  *  - Landmarks are 2 meters away from the robot trajectory | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | int main(int argc, char** argv) { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-07 12:02:20 +08:00
										 |  |  |   // create graph container and add factors to it
 | 
					
						
							| 
									
										
										
										
											2010-08-27 05:21:15 +08:00
										 |  |  | 	Graph graph; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* add prior  */ | 
					
						
							|  |  |  | 	// gaussian for prior
 | 
					
						
							|  |  |  | 	SharedDiagonal prior_model = noiseModel::Diagonal::Sigmas(Vector_(3, 0.3, 0.3, 0.1)); | 
					
						
							|  |  |  | 	Pose2 prior_measurement(0.0, 0.0, 0.0); // prior at origin
 | 
					
						
							| 
									
										
										
										
											2012-02-07 12:02:20 +08:00
										 |  |  | 	graph.addPrior(1, prior_measurement, prior_model); // add directly to graph
 | 
					
						
							| 
									
										
										
										
											2010-08-27 05:21:15 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* add odometry */ | 
					
						
							|  |  |  | 	// general noisemodel for odometry
 | 
					
						
							|  |  |  | 	SharedDiagonal odom_model = noiseModel::Diagonal::Sigmas(Vector_(3, 0.2, 0.2, 0.1)); | 
					
						
							|  |  |  | 	Pose2 odom_measurement(2.0, 0.0, 0.0); // create a measurement for both factors (the same in this case)
 | 
					
						
							| 
									
										
										
										
											2012-02-07 12:02:20 +08:00
										 |  |  | 	graph.addOdometry(1, 2, odom_measurement, odom_model); | 
					
						
							|  |  |  | 	graph.addOdometry(2, 3, odom_measurement, odom_model); | 
					
						
							| 
									
										
										
										
											2010-08-27 05:21:15 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* add measurements */ | 
					
						
							|  |  |  | 	// general noisemodel for measurements
 | 
					
						
							|  |  |  | 	SharedDiagonal meas_model = noiseModel::Diagonal::Sigmas(Vector_(2, 0.1, 0.2)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// create the measurement values - indices are (pose id, landmark id)
 | 
					
						
							|  |  |  | 	Rot2 bearing11 = Rot2::fromDegrees(45), | 
					
						
							|  |  |  | 		 bearing21 = Rot2::fromDegrees(90), | 
					
						
							|  |  |  | 		 bearing32 = Rot2::fromDegrees(90); | 
					
						
							|  |  |  | 	double range11 = sqrt(4+4), | 
					
						
							|  |  |  | 		   range21 = 2.0, | 
					
						
							|  |  |  | 		   range32 = 2.0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// create bearing/range factors and add them
 | 
					
						
							| 
									
										
										
										
											2012-02-07 12:02:20 +08:00
										 |  |  | 	graph.addBearingRange(1, 1, bearing11, range11, meas_model); | 
					
						
							|  |  |  | 	graph.addBearingRange(2, 1, bearing21, range21, meas_model); | 
					
						
							|  |  |  | 	graph.addBearingRange(3, 2, bearing32, range32, meas_model); | 
					
						
							| 
									
										
										
										
											2010-08-27 05:21:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-22 05:38:38 +08:00
										 |  |  | 	graph.print("full graph"); | 
					
						
							| 
									
										
										
										
											2010-08-27 05:21:15 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// initialize to noisy points
 | 
					
						
							| 
									
										
										
										
											2012-02-06 06:34:35 +08:00
										 |  |  | 	planarSLAM::Values initialEstimate; | 
					
						
							| 
									
										
										
										
											2012-02-07 12:02:20 +08:00
										 |  |  | 	initialEstimate.insertPose(1, Pose2(0.5, 0.0, 0.2)); | 
					
						
							|  |  |  | 	initialEstimate.insertPose(2, Pose2(2.3, 0.1,-0.2)); | 
					
						
							|  |  |  | 	initialEstimate.insertPose(3, Pose2(4.1, 0.1, 0.1)); | 
					
						
							|  |  |  | 	initialEstimate.insertPoint(1, Point2(1.8, 2.1)); | 
					
						
							|  |  |  | 	initialEstimate.insertPoint(2, Point2(4.1, 1.8)); | 
					
						
							| 
									
										
										
										
											2010-08-27 05:21:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-22 05:38:38 +08:00
										 |  |  | 	initialEstimate.print("initial estimate"); | 
					
						
							| 
									
										
										
										
											2010-08-27 05:21:15 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-14 09:08:22 +08:00
										 |  |  | 	// optimize using Levenberg-Marquardt optimization with an ordering from colamd
 | 
					
						
							| 
									
										
										
										
											2012-02-07 12:02:20 +08:00
										 |  |  | 	planarSLAM::Values result = optimize(graph, initialEstimate); | 
					
						
							| 
									
										
										
										
											2011-10-23 04:10:25 +08:00
										 |  |  | 	result.print("final result"); | 
					
						
							| 
									
										
										
										
											2010-08-27 05:21:15 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 |