| 
									
										
										
										
											2012-06-23 03:36:49 +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 | 
					
						
							|  |  |  | % | 
					
						
							|  |  |  | % @brief Simple robotics example using the pre-built planar SLAM domain | 
					
						
							|  |  |  | % @author Alex Cunningham | 
					
						
							|  |  |  | % @author Frank Dellaert | 
					
						
							|  |  |  | % @author Chris Beall | 
					
						
							|  |  |  | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | %% Assumptions | 
					
						
							|  |  |  | %  - All values are axis aligned | 
					
						
							|  |  |  | %  - Robot poses are facing along the X axis (horizontal, to the right in images) | 
					
						
							|  |  |  | %  - We have full odometry for measurements | 
					
						
							|  |  |  | %  - The robot is on a grid, moving 2 meters each step | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | %% Create graph container and add factors to it | 
					
						
							|  |  |  | graph = pose2SLAMGraph; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | %% Add prior | 
					
						
							|  |  |  | % gaussian for prior | 
					
						
							|  |  |  | priorMean = gtsamPose2(0.0, 0.0, 0.0); % prior at origin | 
					
						
							| 
									
										
										
										
											2012-07-10 04:04:06 +08:00
										 |  |  | priorNoise = gtsamnoiseModelDiagonal.Sigmas([0.3; 0.3; 0.1]); | 
					
						
							| 
									
										
										
										
											2012-06-24 10:48:12 +08:00
										 |  |  | graph.addPosePrior(1, priorMean, priorNoise); % add directly to graph | 
					
						
							| 
									
										
										
										
											2012-06-23 03:36:49 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | %% Add odometry | 
					
						
							|  |  |  | % general noisemodel for odometry | 
					
						
							| 
									
										
										
										
											2012-07-10 04:04:06 +08:00
										 |  |  | odometryNoise = gtsamnoiseModelDiagonal.Sigmas([0.2; 0.2; 0.1]); | 
					
						
							| 
									
										
										
										
											2012-06-24 10:48:12 +08:00
										 |  |  | graph.addRelativePose(1, 2, gtsamPose2(2.0, 0.0, 0.0 ), odometryNoise); | 
					
						
							|  |  |  | graph.addRelativePose(2, 3, gtsamPose2(2.0, 0.0, pi/2), odometryNoise); | 
					
						
							|  |  |  | graph.addRelativePose(3, 4, gtsamPose2(2.0, 0.0, pi/2), odometryNoise); | 
					
						
							|  |  |  | graph.addRelativePose(4, 5, gtsamPose2(2.0, 0.0, pi/2), odometryNoise); | 
					
						
							| 
									
										
										
										
											2012-06-23 03:36:49 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | %% Add pose constraint | 
					
						
							| 
									
										
										
										
											2012-07-10 04:04:06 +08:00
										 |  |  | model = gtsamnoiseModelDiagonal.Sigmas([0.2; 0.2; 0.1]); | 
					
						
							| 
									
										
										
										
											2012-06-24 10:48:12 +08:00
										 |  |  | graph.addRelativePose(5, 2, gtsamPose2(2.0, 0.0, pi/2), model); | 
					
						
							| 
									
										
										
										
											2012-06-23 03:36:49 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | %% Initialize to noisy points | 
					
						
							|  |  |  | initialEstimate = pose2SLAMValues; | 
					
						
							|  |  |  | initialEstimate.insertPose(1, gtsamPose2(0.5, 0.0, 0.2 )); | 
					
						
							|  |  |  | initialEstimate.insertPose(2, gtsamPose2(2.3, 0.1,-0.2 )); | 
					
						
							|  |  |  | initialEstimate.insertPose(3, gtsamPose2(4.1, 0.1, pi/2)); | 
					
						
							|  |  |  | initialEstimate.insertPose(4, gtsamPose2(4.0, 2.0, pi  )); | 
					
						
							|  |  |  | initialEstimate.insertPose(5, gtsamPose2(2.1, 2.1,-pi/2)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | %% Optimize using Levenberg-Marquardt optimization with an ordering from colamd | 
					
						
							| 
									
										
										
										
											2012-06-24 10:48:12 +08:00
										 |  |  | result = graph.optimize(initialEstimate,0); | 
					
						
							|  |  |  | resultSPCG = graph.optimizeSPCG(initialEstimate,0); | 
					
						
							| 
									
										
										
										
											2012-06-23 03:36:49 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | %% Plot Covariance Ellipses | 
					
						
							|  |  |  | marginals = graph.marginals(result); | 
					
						
							|  |  |  | P = marginals.marginalCovariance(1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | pose_1 = result.pose(1); | 
					
						
							|  |  |  | CHECK('pose_1.equals(gtsamPose2,1e-4)',pose_1.equals(gtsamPose2,1e-4)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-23 07:40:04 +08:00
										 |  |  | poseSPCG_1 = resultSPCG.pose(1); | 
					
						
							|  |  |  | CHECK('poseSPCG_1.equals(gtsamPose2,1e-4)',poseSPCG_1.equals(gtsamPose2,1e-4)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-23 03:36:49 +08:00
										 |  |  | 
 |