| 
									
										
										
										
											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    smallExample.cpp | 
					
						
							|  |  |  |  * @brief   Create small example with two poses and one landmark | 
					
						
							|  |  |  |  * @brief   smallExample | 
					
						
							|  |  |  |  * @author  Carlos Nieto | 
					
						
							|  |  |  |  * @author  Frank dellaert | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-03 03:05:38 +08:00
										 |  |  | #include <gtsam/nonlinear/Symbol.h>
 | 
					
						
							| 
									
										
										
										
											2012-06-03 00:18:40 +08:00
										 |  |  | #include <gtsam/nonlinear/Ordering.h>
 | 
					
						
							|  |  |  | #include <gtsam/nonlinear/NonlinearFactorGraph.h>
 | 
					
						
							|  |  |  | #include <gtsam/nonlinear/NonlinearFactor.h>
 | 
					
						
							|  |  |  | #include <gtsam/inference/FactorGraph.h>
 | 
					
						
							|  |  |  | #include <gtsam/base/Matrix.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-10 04:15:44 +08:00
										 |  |  | #include <tests/smallExample.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
											  
											
												Large gtsam refactoring
To support faster development *and* better performance Richard and I pushed through a large refactoring of NonlinearFactors.
The following are the biggest changes:
1) NonLinearFactor1 and NonLinearFactor2 are now templated on Config, Key type, and X type, where X is the argument to the measurement function.
2) The measurement itself is no longer kept in the nonlinear factor. Instead, a derived class (see testVSLAMFactor, testNonlinearEquality, testPose3Factor etc...) has to implement a function to compute the errors, "evaluateErrors". Instead of (h(x)-z), it needs to return (z-h(x)), so Ax-b is an approximation of the error. IMPORTANT: evaluateErrors needs - if asked - *combine* the calculation of the function value h(x) and the derivatives dh(x)/dx. This was a major performance issue. To do this, boost::optional<Matrix&> arguments are provided, and tin EvaluateErrors you just  says something like
	if (H) *H = Matrix_(3,6,....);
3) We are no longer using int or strings for nonlinear factors. Instead, the preferred key type is now Symbol, defined in Key.h. This is both fast and cool: you can construct it from an int, and cast it to a strong. It also does type checking: a Symbol<Pose3,'x'> will not match a Symbol<Pose2,'x'>
4) minor: take a look at LieConfig.h: it help you avoid writing a lot of code bu automatically creating configs for a certain type. See e.g. Pose3Config.h. A "double" LieConfig is on the way - Thanks Richard and Manohar !
											
										 
											2010-01-14 06:25:03 +08:00
										 |  |  | #include <boost/optional.hpp>
 | 
					
						
							| 
									
										
										
										
											2010-10-09 06:04:47 +08:00
										 |  |  | #include <boost/shared_ptr.hpp>
 | 
					
						
							| 
									
										
										
										
											2009-08-22 06:23:24 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-03 00:18:40 +08:00
										 |  |  | #include <iostream>
 | 
					
						
							|  |  |  | #include <string>
 | 
					
						
							| 
									
										
										
										
											2009-10-27 21:34:36 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-03 00:18:40 +08:00
										 |  |  | using namespace std; | 
					
						
							| 
									
										
										
										
											2009-08-22 06:23:24 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | namespace gtsam { | 
					
						
							| 
									
										
										
										
											2010-01-19 13:33:44 +08:00
										 |  |  | namespace example { | 
					
						
							| 
									
										
										
										
											2009-08-22 06:23:24 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-23 03:36:49 +08:00
										 |  |  | 	using namespace gtsam::noiseModel; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-07 07:32:59 +08:00
										 |  |  | 	typedef boost::shared_ptr<NonlinearFactor> shared; | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-23 01:36:57 +08:00
										 |  |  | 	static SharedDiagonal sigma1_0 = noiseModel::Isotropic::Sigma(2,1.0); | 
					
						
							|  |  |  | 	static SharedDiagonal sigma0_1 = noiseModel::Isotropic::Sigma(2,0.1); | 
					
						
							|  |  |  | 	static SharedDiagonal sigma0_2 = noiseModel::Isotropic::Sigma(2,0.2); | 
					
						
							|  |  |  | 	static SharedDiagonal constraintModel = noiseModel::Constrained::All(2); | 
					
						
							| 
									
										
										
										
											2010-01-21 02:32:48 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-12 05:14:35 +08:00
										 |  |  | 	static const Index _l1_=0, _x1_=1, _x2_=2; | 
					
						
							|  |  |  | 	static const Index _x_=0, _y_=1, _z_=2; | 
					
						
							| 
									
										
										
										
											2010-10-09 06:04:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-03 00:18:40 +08:00
										 |  |  | 	// Convenience for named keys
 | 
					
						
							| 
									
										
										
										
											2012-06-03 03:28:21 +08:00
										 |  |  | 	using symbol_shorthand::X; | 
					
						
							|  |  |  | 	using symbol_shorthand::L; | 
					
						
							| 
									
										
										
										
											2012-02-23 07:38:09 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 	/* ************************************************************************* */ | 
					
						
							| 
									
										
										
										
											2010-01-19 13:33:44 +08:00
										 |  |  | 	boost::shared_ptr<const Graph> sharedNonlinearFactorGraph() { | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		// Create
 | 
					
						
							| 
									
										
										
										
											2010-01-19 13:33:44 +08:00
										 |  |  | 		boost::shared_ptr<Graph> nlfg( | 
					
						
							|  |  |  | 				new Graph); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// prior on x1
 | 
					
						
							| 
									
										
										
										
											2010-01-19 13:33:44 +08:00
										 |  |  | 		Point2 mu; | 
					
						
							| 
									
										
										
										
											2012-06-03 03:28:21 +08:00
										 |  |  | 		shared f1(new simulated2D::Prior(mu, sigma0_1, X(1))); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		nlfg->push_back(f1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// odometry between x1 and x2
 | 
					
						
							| 
									
										
										
										
											2010-01-19 13:33:44 +08:00
										 |  |  | 		Point2 z2(1.5, 0); | 
					
						
							| 
									
										
										
										
											2012-06-03 03:28:21 +08:00
										 |  |  | 		shared f2(new simulated2D::Odometry(z2, sigma0_1, X(1), X(2))); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		nlfg->push_back(f2); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// measurement between x1 and l1
 | 
					
						
							| 
									
										
										
										
											2010-01-19 13:33:44 +08:00
										 |  |  | 		Point2 z3(0, -1); | 
					
						
							| 
									
										
										
										
											2012-06-03 03:28:21 +08:00
										 |  |  | 		shared f3(new simulated2D::Measurement(z3, sigma0_2, X(1), L(1))); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		nlfg->push_back(f3); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// measurement between x2 and l1
 | 
					
						
							| 
									
										
										
										
											2010-01-19 13:33:44 +08:00
										 |  |  | 		Point2 z4(-1.5, -1.); | 
					
						
							| 
									
										
										
										
											2012-06-03 03:28:21 +08:00
										 |  |  | 		shared f4(new simulated2D::Measurement(z4, sigma0_2, X(2), L(1))); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		nlfg->push_back(f4); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return nlfg; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-08-22 06:23:24 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 	/* ************************************************************************* */ | 
					
						
							| 
									
										
										
										
											2010-01-19 13:33:44 +08:00
										 |  |  | 	Graph createNonlinearFactorGraph() { | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		return *sharedNonlinearFactorGraph(); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-09-09 12:43:04 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 	/* ************************************************************************* */ | 
					
						
							| 
									
										
										
										
											2010-10-09 11:09:58 +08:00
										 |  |  | 	Values createValues() { | 
					
						
							|  |  |  | 		Values c; | 
					
						
							| 
									
										
										
										
											2012-06-03 03:28:21 +08:00
										 |  |  | 		c.insert(X(1), Point2(0.0, 0.0)); | 
					
						
							|  |  |  | 		c.insert(X(2), Point2(1.5, 0.0)); | 
					
						
							|  |  |  | 		c.insert(L(1), Point2(0.0, -1.0)); | 
					
						
							| 
									
										
										
										
											2010-01-19 13:33:44 +08:00
										 |  |  | 		return c; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* ************************************************************************* */ | 
					
						
							| 
									
										
										
										
											2010-10-09 11:09:58 +08:00
										 |  |  | 	VectorValues createVectorValues() { | 
					
						
							|  |  |  | 		VectorValues c(vector<size_t>(3, 2)); | 
					
						
							| 
									
										
										
										
											2010-10-09 06:04:47 +08:00
										 |  |  | 		c[_l1_] = Vector_(2, 0.0, -1.0); | 
					
						
							|  |  |  | 		c[_x1_] = Vector_(2, 0.0, 0.0); | 
					
						
							|  |  |  | 		c[_x2_] = Vector_(2, 1.5, 0.0); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		return c; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-08-22 06:23:24 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 	/* ************************************************************************* */ | 
					
						
							| 
									
										
										
										
											2010-10-09 11:09:58 +08:00
										 |  |  | 	boost::shared_ptr<const Values> sharedNoisyValues() { | 
					
						
							|  |  |  | 		boost::shared_ptr<Values> c(new Values); | 
					
						
							| 
									
										
										
										
											2012-06-03 03:28:21 +08:00
										 |  |  | 		c->insert(X(1), Point2(0.1, 0.1)); | 
					
						
							|  |  |  | 		c->insert(X(2), Point2(1.4, 0.2)); | 
					
						
							|  |  |  | 		c->insert(L(1), Point2(0.1, -1.1)); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		return c; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-08-22 06:23:24 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 	/* ************************************************************************* */ | 
					
						
							| 
									
										
										
										
											2010-10-09 11:09:58 +08:00
										 |  |  | 	Values createNoisyValues() { | 
					
						
							|  |  |  | 		return *sharedNoisyValues(); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-08-22 06:23:24 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 	/* ************************************************************************* */ | 
					
						
							| 
									
										
										
										
											2010-10-09 11:09:58 +08:00
										 |  |  | 	VectorValues createCorrectDelta(const Ordering& ordering) { | 
					
						
							|  |  |  | 		VectorValues c(vector<size_t>(3,2)); | 
					
						
							| 
									
										
										
										
											2012-06-03 03:28:21 +08:00
										 |  |  | 		c[ordering[L(1)]] = Vector_(2, -0.1, 0.1); | 
					
						
							|  |  |  | 		c[ordering[X(1)]] = Vector_(2, -0.1, -0.1); | 
					
						
							|  |  |  | 		c[ordering[X(2)]] = Vector_(2, 0.1, -0.2); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		return c; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-09-09 12:43:04 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 	/* ************************************************************************* */ | 
					
						
							| 
									
										
										
										
											2010-10-09 11:09:58 +08:00
										 |  |  | 	VectorValues createZeroDelta(const Ordering& ordering) { | 
					
						
							|  |  |  | 		VectorValues c(vector<size_t>(3,2)); | 
					
						
							| 
									
										
										
										
											2012-06-03 03:28:21 +08:00
										 |  |  | 		c[ordering[L(1)]] = zero(2); | 
					
						
							|  |  |  | 		c[ordering[X(1)]] = zero(2); | 
					
						
							|  |  |  | 		c[ordering[X(2)]] = zero(2); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		return c; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-08-22 06:23:24 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 	/* ************************************************************************* */ | 
					
						
							| 
									
										
										
										
											2012-06-10 02:52:22 +08:00
										 |  |  | 	JacobianFactorGraph createGaussianFactorGraph(const Ordering& ordering) { | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		// Create empty graph
 | 
					
						
							| 
									
										
										
										
											2012-06-18 22:55:30 +08:00
										 |  |  | 		JacobianFactorGraph fg; | 
					
						
							| 
									
										
										
										
											2009-08-22 06:23:24 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-22 07:50:28 +08:00
										 |  |  | 		SharedDiagonal unit2 = noiseModel::Unit::Create(2); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-09 06:04:47 +08:00
										 |  |  | 		// linearized prior on x1: c[_x1_]+x1=0 i.e. x1=-c[_x1_]
 | 
					
						
							| 
									
										
										
										
											2012-06-18 22:55:30 +08:00
										 |  |  | 		fg.push_back(boost::make_shared<JacobianFactor>(ordering[X(1)], 10*eye(2), -1.0*ones(2), unit2)); | 
					
						
							| 
									
										
										
										
											2009-08-22 06:23:24 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		// odometry between x1 and x2: x2-x1=[0.2;-0.1]
 | 
					
						
							| 
									
										
										
										
											2012-06-18 22:55:30 +08:00
										 |  |  | 		fg.push_back(boost::make_shared<JacobianFactor>(ordering[X(1)], -10*eye(2),ordering[X(2)], 10*eye(2), Vector_(2, 2.0, -1.0), unit2)); | 
					
						
							| 
									
										
										
										
											2009-08-22 06:23:24 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-09 06:04:47 +08:00
										 |  |  |     // measurement between x1 and l1: l1-x1=[0.0;0.2]
 | 
					
						
							| 
									
										
										
										
											2012-06-18 22:55:30 +08:00
										 |  |  | 		fg.push_back(boost::make_shared<JacobianFactor>(ordering[X(1)], -5*eye(2), ordering[L(1)], 5*eye(2), Vector_(2, 0.0, 1.0), unit2)); | 
					
						
							| 
									
										
										
										
											2009-09-09 12:43:04 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		// measurement between x2 and l1: l1-x2=[-0.2;0.3]
 | 
					
						
							| 
									
										
										
										
											2012-06-18 22:55:30 +08:00
										 |  |  | 		fg.push_back(boost::make_shared<JacobianFactor>(ordering[X(2)], -5*eye(2), ordering[L(1)], 5*eye(2), Vector_(2, -1.0, 1.5), unit2)); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-18 22:55:30 +08:00
										 |  |  | 		return fg; | 
					
						
							| 
									
										
										
										
											2009-10-27 21:34:36 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 	/* ************************************************************************* */ | 
					
						
							|  |  |  | 	/** create small Chordal Bayes Net x <- y
 | 
					
						
							|  |  |  | 	 * x y d | 
					
						
							|  |  |  | 	 * 1 1 9 | 
					
						
							|  |  |  | 	 *   1 5 | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	GaussianBayesNet createSmallGaussianBayesNet() { | 
					
						
							|  |  |  | 		Matrix R11 = Matrix_(1, 1, 1.0), S12 = Matrix_(1, 1, 1.0); | 
					
						
							|  |  |  | 		Matrix R22 = Matrix_(1, 1, 1.0); | 
					
						
							|  |  |  | 		Vector d1(1), d2(1); | 
					
						
							|  |  |  | 		d1(0) = 9; | 
					
						
							|  |  |  | 		d2(0) = 5; | 
					
						
							|  |  |  | 		Vector tau(1); | 
					
						
							|  |  |  | 		tau(0) = 1.0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// define nodes and specify in reverse topological sort (i.e. parents last)
 | 
					
						
							| 
									
										
										
										
											2010-10-10 08:51:57 +08:00
										 |  |  | 		GaussianConditional::shared_ptr Px_y(new GaussianConditional(_x_, d1, R11, _y_, S12, tau)); | 
					
						
							|  |  |  | 		GaussianConditional::shared_ptr Py(new GaussianConditional(_y_, d2, R22, tau)); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		GaussianBayesNet cbn; | 
					
						
							|  |  |  | 		cbn.push_back(Px_y); | 
					
						
							|  |  |  | 		cbn.push_back(Py); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return cbn; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-12-29 13:57:05 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 	/* ************************************************************************* */ | 
					
						
							|  |  |  | 	// Some nonlinear functions to optimize
 | 
					
						
							|  |  |  | 	/* ************************************************************************* */ | 
					
						
							|  |  |  | 	namespace smallOptimize { | 
					
						
							| 
									
										
											  
											
												Large gtsam refactoring
To support faster development *and* better performance Richard and I pushed through a large refactoring of NonlinearFactors.
The following are the biggest changes:
1) NonLinearFactor1 and NonLinearFactor2 are now templated on Config, Key type, and X type, where X is the argument to the measurement function.
2) The measurement itself is no longer kept in the nonlinear factor. Instead, a derived class (see testVSLAMFactor, testNonlinearEquality, testPose3Factor etc...) has to implement a function to compute the errors, "evaluateErrors". Instead of (h(x)-z), it needs to return (z-h(x)), so Ax-b is an approximation of the error. IMPORTANT: evaluateErrors needs - if asked - *combine* the calculation of the function value h(x) and the derivatives dh(x)/dx. This was a major performance issue. To do this, boost::optional<Matrix&> arguments are provided, and tin EvaluateErrors you just  says something like
	if (H) *H = Matrix_(3,6,....);
3) We are no longer using int or strings for nonlinear factors. Instead, the preferred key type is now Symbol, defined in Key.h. This is both fast and cool: you can construct it from an int, and cast it to a strong. It also does type checking: a Symbol<Pose3,'x'> will not match a Symbol<Pose2,'x'>
4) minor: take a look at LieConfig.h: it help you avoid writing a lot of code bu automatically creating configs for a certain type. See e.g. Pose3Config.h. A "double" LieConfig is on the way - Thanks Richard and Manohar !
											
										 
											2010-01-14 06:25:03 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-19 13:33:44 +08:00
										 |  |  | 		Point2 h(const Point2& v) { | 
					
						
							|  |  |  | 			return Point2(cos(v.x()), sin(v.y())); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
											  
											
												Large gtsam refactoring
To support faster development *and* better performance Richard and I pushed through a large refactoring of NonlinearFactors.
The following are the biggest changes:
1) NonLinearFactor1 and NonLinearFactor2 are now templated on Config, Key type, and X type, where X is the argument to the measurement function.
2) The measurement itself is no longer kept in the nonlinear factor. Instead, a derived class (see testVSLAMFactor, testNonlinearEquality, testPose3Factor etc...) has to implement a function to compute the errors, "evaluateErrors". Instead of (h(x)-z), it needs to return (z-h(x)), so Ax-b is an approximation of the error. IMPORTANT: evaluateErrors needs - if asked - *combine* the calculation of the function value h(x) and the derivatives dh(x)/dx. This was a major performance issue. To do this, boost::optional<Matrix&> arguments are provided, and tin EvaluateErrors you just  says something like
	if (H) *H = Matrix_(3,6,....);
3) We are no longer using int or strings for nonlinear factors. Instead, the preferred key type is now Symbol, defined in Key.h. This is both fast and cool: you can construct it from an int, and cast it to a strong. It also does type checking: a Symbol<Pose3,'x'> will not match a Symbol<Pose2,'x'>
4) minor: take a look at LieConfig.h: it help you avoid writing a lot of code bu automatically creating configs for a certain type. See e.g. Pose3Config.h. A "double" LieConfig is on the way - Thanks Richard and Manohar !
											
										 
											2010-01-14 06:25:03 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-19 13:33:44 +08:00
										 |  |  | 		Matrix H(const Point2& v) { | 
					
						
							|  |  |  | 			return Matrix_(2, 2, | 
					
						
							|  |  |  | 					-sin(v.x()), 0.0, | 
					
						
							|  |  |  | 					 0.0, cos(v.y())); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
											  
											
												Large gtsam refactoring
To support faster development *and* better performance Richard and I pushed through a large refactoring of NonlinearFactors.
The following are the biggest changes:
1) NonLinearFactor1 and NonLinearFactor2 are now templated on Config, Key type, and X type, where X is the argument to the measurement function.
2) The measurement itself is no longer kept in the nonlinear factor. Instead, a derived class (see testVSLAMFactor, testNonlinearEquality, testPose3Factor etc...) has to implement a function to compute the errors, "evaluateErrors". Instead of (h(x)-z), it needs to return (z-h(x)), so Ax-b is an approximation of the error. IMPORTANT: evaluateErrors needs - if asked - *combine* the calculation of the function value h(x) and the derivatives dh(x)/dx. This was a major performance issue. To do this, boost::optional<Matrix&> arguments are provided, and tin EvaluateErrors you just  says something like
	if (H) *H = Matrix_(3,6,....);
3) We are no longer using int or strings for nonlinear factors. Instead, the preferred key type is now Symbol, defined in Key.h. This is both fast and cool: you can construct it from an int, and cast it to a strong. It also does type checking: a Symbol<Pose3,'x'> will not match a Symbol<Pose2,'x'>
4) minor: take a look at LieConfig.h: it help you avoid writing a lot of code bu automatically creating configs for a certain type. See e.g. Pose3Config.h. A "double" LieConfig is on the way - Thanks Richard and Manohar !
											
										 
											2010-01-14 06:25:03 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-21 05:52:47 +08:00
										 |  |  | 		struct UnaryFactor: public gtsam::NoiseModelFactor1<Point2> { | 
					
						
							| 
									
										
											  
											
												Large gtsam refactoring
To support faster development *and* better performance Richard and I pushed through a large refactoring of NonlinearFactors.
The following are the biggest changes:
1) NonLinearFactor1 and NonLinearFactor2 are now templated on Config, Key type, and X type, where X is the argument to the measurement function.
2) The measurement itself is no longer kept in the nonlinear factor. Instead, a derived class (see testVSLAMFactor, testNonlinearEquality, testPose3Factor etc...) has to implement a function to compute the errors, "evaluateErrors". Instead of (h(x)-z), it needs to return (z-h(x)), so Ax-b is an approximation of the error. IMPORTANT: evaluateErrors needs - if asked - *combine* the calculation of the function value h(x) and the derivatives dh(x)/dx. This was a major performance issue. To do this, boost::optional<Matrix&> arguments are provided, and tin EvaluateErrors you just  says something like
	if (H) *H = Matrix_(3,6,....);
3) We are no longer using int or strings for nonlinear factors. Instead, the preferred key type is now Symbol, defined in Key.h. This is both fast and cool: you can construct it from an int, and cast it to a strong. It also does type checking: a Symbol<Pose3,'x'> will not match a Symbol<Pose2,'x'>
4) minor: take a look at LieConfig.h: it help you avoid writing a lot of code bu automatically creating configs for a certain type. See e.g. Pose3Config.h. A "double" LieConfig is on the way - Thanks Richard and Manohar !
											
										 
											2010-01-14 06:25:03 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-19 13:33:44 +08:00
										 |  |  | 			Point2 z_; | 
					
						
							| 
									
										
											  
											
												Large gtsam refactoring
To support faster development *and* better performance Richard and I pushed through a large refactoring of NonlinearFactors.
The following are the biggest changes:
1) NonLinearFactor1 and NonLinearFactor2 are now templated on Config, Key type, and X type, where X is the argument to the measurement function.
2) The measurement itself is no longer kept in the nonlinear factor. Instead, a derived class (see testVSLAMFactor, testNonlinearEquality, testPose3Factor etc...) has to implement a function to compute the errors, "evaluateErrors". Instead of (h(x)-z), it needs to return (z-h(x)), so Ax-b is an approximation of the error. IMPORTANT: evaluateErrors needs - if asked - *combine* the calculation of the function value h(x) and the derivatives dh(x)/dx. This was a major performance issue. To do this, boost::optional<Matrix&> arguments are provided, and tin EvaluateErrors you just  says something like
	if (H) *H = Matrix_(3,6,....);
3) We are no longer using int or strings for nonlinear factors. Instead, the preferred key type is now Symbol, defined in Key.h. This is both fast and cool: you can construct it from an int, and cast it to a strong. It also does type checking: a Symbol<Pose3,'x'> will not match a Symbol<Pose2,'x'>
4) minor: take a look at LieConfig.h: it help you avoid writing a lot of code bu automatically creating configs for a certain type. See e.g. Pose3Config.h. A "double" LieConfig is on the way - Thanks Richard and Manohar !
											
										 
											2010-01-14 06:25:03 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-19 09:02:07 +08:00
										 |  |  | 			UnaryFactor(const Point2& z, const SharedNoiseModel& model, Key key) : | 
					
						
							| 
									
										
										
										
											2012-02-21 05:52:47 +08:00
										 |  |  | 				gtsam::NoiseModelFactor1<Point2>(model, key), z_(z) { | 
					
						
							| 
									
										
											  
											
												Large gtsam refactoring
To support faster development *and* better performance Richard and I pushed through a large refactoring of NonlinearFactors.
The following are the biggest changes:
1) NonLinearFactor1 and NonLinearFactor2 are now templated on Config, Key type, and X type, where X is the argument to the measurement function.
2) The measurement itself is no longer kept in the nonlinear factor. Instead, a derived class (see testVSLAMFactor, testNonlinearEquality, testPose3Factor etc...) has to implement a function to compute the errors, "evaluateErrors". Instead of (h(x)-z), it needs to return (z-h(x)), so Ax-b is an approximation of the error. IMPORTANT: evaluateErrors needs - if asked - *combine* the calculation of the function value h(x) and the derivatives dh(x)/dx. This was a major performance issue. To do this, boost::optional<Matrix&> arguments are provided, and tin EvaluateErrors you just  says something like
	if (H) *H = Matrix_(3,6,....);
3) We are no longer using int or strings for nonlinear factors. Instead, the preferred key type is now Symbol, defined in Key.h. This is both fast and cool: you can construct it from an int, and cast it to a strong. It also does type checking: a Symbol<Pose3,'x'> will not match a Symbol<Pose2,'x'>
4) minor: take a look at LieConfig.h: it help you avoid writing a lot of code bu automatically creating configs for a certain type. See e.g. Pose3Config.h. A "double" LieConfig is on the way - Thanks Richard and Manohar !
											
										 
											2010-01-14 06:25:03 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-07 07:32:59 +08:00
										 |  |  | 			Vector evaluateError(const Point2& x, boost::optional<Matrix&> A = boost::none) const { | 
					
						
							| 
									
										
											  
											
												Large gtsam refactoring
To support faster development *and* better performance Richard and I pushed through a large refactoring of NonlinearFactors.
The following are the biggest changes:
1) NonLinearFactor1 and NonLinearFactor2 are now templated on Config, Key type, and X type, where X is the argument to the measurement function.
2) The measurement itself is no longer kept in the nonlinear factor. Instead, a derived class (see testVSLAMFactor, testNonlinearEquality, testPose3Factor etc...) has to implement a function to compute the errors, "evaluateErrors". Instead of (h(x)-z), it needs to return (z-h(x)), so Ax-b is an approximation of the error. IMPORTANT: evaluateErrors needs - if asked - *combine* the calculation of the function value h(x) and the derivatives dh(x)/dx. This was a major performance issue. To do this, boost::optional<Matrix&> arguments are provided, and tin EvaluateErrors you just  says something like
	if (H) *H = Matrix_(3,6,....);
3) We are no longer using int or strings for nonlinear factors. Instead, the preferred key type is now Symbol, defined in Key.h. This is both fast and cool: you can construct it from an int, and cast it to a strong. It also does type checking: a Symbol<Pose3,'x'> will not match a Symbol<Pose2,'x'>
4) minor: take a look at LieConfig.h: it help you avoid writing a lot of code bu automatically creating configs for a certain type. See e.g. Pose3Config.h. A "double" LieConfig is on the way - Thanks Richard and Manohar !
											
										 
											2010-01-14 06:25:03 +08:00
										 |  |  | 				if (A) *A = H(x); | 
					
						
							| 
									
										
										
										
											2010-01-19 13:33:44 +08:00
										 |  |  | 				return (h(x) - z_).vector(); | 
					
						
							| 
									
										
											  
											
												Large gtsam refactoring
To support faster development *and* better performance Richard and I pushed through a large refactoring of NonlinearFactors.
The following are the biggest changes:
1) NonLinearFactor1 and NonLinearFactor2 are now templated on Config, Key type, and X type, where X is the argument to the measurement function.
2) The measurement itself is no longer kept in the nonlinear factor. Instead, a derived class (see testVSLAMFactor, testNonlinearEquality, testPose3Factor etc...) has to implement a function to compute the errors, "evaluateErrors". Instead of (h(x)-z), it needs to return (z-h(x)), so Ax-b is an approximation of the error. IMPORTANT: evaluateErrors needs - if asked - *combine* the calculation of the function value h(x) and the derivatives dh(x)/dx. This was a major performance issue. To do this, boost::optional<Matrix&> arguments are provided, and tin EvaluateErrors you just  says something like
	if (H) *H = Matrix_(3,6,....);
3) We are no longer using int or strings for nonlinear factors. Instead, the preferred key type is now Symbol, defined in Key.h. This is both fast and cool: you can construct it from an int, and cast it to a strong. It also does type checking: a Symbol<Pose3,'x'> will not match a Symbol<Pose2,'x'>
4) minor: take a look at LieConfig.h: it help you avoid writing a lot of code bu automatically creating configs for a certain type. See e.g. Pose3Config.h. A "double" LieConfig is on the way - Thanks Richard and Manohar !
											
										 
											2010-01-14 06:25:03 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-12-29 13:57:05 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 	/* ************************************************************************* */ | 
					
						
							| 
									
										
										
										
											2010-01-19 13:33:44 +08:00
										 |  |  | 	boost::shared_ptr<const Graph> sharedReallyNonlinearFactorGraph() { | 
					
						
							| 
									
										
										
										
											2010-10-09 06:04:47 +08:00
										 |  |  | 		boost::shared_ptr<Graph> fg(new Graph); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		Vector z = Vector_(2, 1.0, 0.0); | 
					
						
							|  |  |  | 		double sigma = 0.1; | 
					
						
							| 
									
										
										
										
											2010-01-19 13:33:44 +08:00
										 |  |  | 		boost::shared_ptr<smallOptimize::UnaryFactor> factor( | 
					
						
							| 
									
										
										
										
											2012-06-03 03:28:21 +08:00
										 |  |  | 				new smallOptimize::UnaryFactor(z, noiseModel::Isotropic::Sigma(2,sigma), X(1))); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		fg->push_back(factor); | 
					
						
							|  |  |  | 		return fg; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-10-27 21:34:36 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-19 13:33:44 +08:00
										 |  |  | 	Graph createReallyNonlinearFactorGraph() { | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		return *sharedReallyNonlinearFactorGraph(); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-11-10 05:34:20 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 	/* ************************************************************************* */ | 
					
						
							| 
									
										
										
										
											2010-10-09 11:09:58 +08:00
										 |  |  | 	pair<Graph, Values> createNonlinearSmoother(int T) { | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// Create
 | 
					
						
							| 
									
										
										
										
											2010-01-19 13:33:44 +08:00
										 |  |  | 		Graph nlfg; | 
					
						
							| 
									
										
										
										
											2010-10-09 11:09:58 +08:00
										 |  |  | 		Values poses; | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// prior on x1
 | 
					
						
							| 
									
										
										
										
											2010-01-19 13:33:44 +08:00
										 |  |  | 		Point2 x1(1.0, 0.0); | 
					
						
							| 
									
										
										
										
											2012-06-03 03:28:21 +08:00
										 |  |  | 		shared prior(new simulated2D::Prior(x1, sigma1_0, X(1))); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		nlfg.push_back(prior); | 
					
						
							| 
									
										
										
										
											2012-06-03 03:28:21 +08:00
										 |  |  | 		poses.insert(X(1), x1); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		for (int t = 2; t <= T; t++) { | 
					
						
							|  |  |  | 			// odometry between x_t and x_{t-1}
 | 
					
						
							| 
									
										
										
										
											2010-01-19 13:33:44 +08:00
										 |  |  | 			Point2 odo(1.0, 0.0); | 
					
						
							| 
									
										
										
										
											2012-06-03 03:28:21 +08:00
										 |  |  | 			shared odometry(new simulated2D::Odometry(odo, sigma1_0, X(t - 1), X(t))); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 			nlfg.push_back(odometry); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// measurement on x_t is like perfect GPS
 | 
					
						
							| 
									
										
										
										
											2010-01-19 13:33:44 +08:00
										 |  |  | 			Point2 xt(t, 0); | 
					
						
							| 
									
										
										
										
											2012-06-03 03:28:21 +08:00
										 |  |  | 			shared measurement(new simulated2D::Prior(xt, sigma1_0, X(t))); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 			nlfg.push_back(measurement); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// initial estimate
 | 
					
						
							| 
									
										
										
										
											2012-06-03 03:28:21 +08:00
										 |  |  | 			poses.insert(X(t), xt); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return make_pair(nlfg, poses); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-11-10 05:34:20 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 	/* ************************************************************************* */ | 
					
						
							| 
									
										
										
										
											2011-04-13 05:18:10 +08:00
										 |  |  | 	pair<FactorGraph<GaussianFactor>, Ordering> createSmoother(int T, boost::optional<Ordering> ordering) { | 
					
						
							| 
									
										
										
										
											2010-01-19 13:33:44 +08:00
										 |  |  | 		Graph nlfg; | 
					
						
							| 
									
										
										
										
											2010-10-09 11:09:58 +08:00
										 |  |  | 		Values poses; | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		boost::tie(nlfg, poses) = createNonlinearSmoother(T); | 
					
						
							| 
									
										
										
										
											2009-10-14 23:32:05 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-09 06:04:47 +08:00
										 |  |  | 		if(!ordering) ordering = *poses.orderingArbitrary(); | 
					
						
							|  |  |  | 		return make_pair(*nlfg.linearize(poses, *ordering), *ordering); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-11-10 05:34:20 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 	/* ************************************************************************* */ | 
					
						
							| 
									
										
										
										
											2012-06-10 02:52:22 +08:00
										 |  |  | 	JacobianFactorGraph createSimpleConstraintGraph() { | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		// create unary factor
 | 
					
						
							| 
									
										
										
										
											2010-10-09 06:04:47 +08:00
										 |  |  | 		// prior on _x_, mean = [1,-1], sigma=0.1
 | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		Matrix Ax = eye(2); | 
					
						
							|  |  |  | 		Vector b1(2); | 
					
						
							|  |  |  | 		b1(0) = 1.0; | 
					
						
							|  |  |  | 		b1(1) = -1.0; | 
					
						
							| 
									
										
										
										
											2011-02-19 06:10:21 +08:00
										 |  |  | 		JacobianFactor::shared_ptr f1(new JacobianFactor(_x_, Ax, b1, sigma0_1)); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// create binary constraint factor
 | 
					
						
							| 
									
										
										
										
											2010-10-09 06:04:47 +08:00
										 |  |  | 		// between _x_ and _y_, that is going to be the only factor on _y_
 | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		// |1 0||x_1| + |-1  0||y_1| = |0|
 | 
					
						
							|  |  |  | 		// |0 1||x_2|   | 0 -1||y_2|   |0|
 | 
					
						
							|  |  |  | 		Matrix Ax1 = eye(2); | 
					
						
							|  |  |  | 		Matrix Ay1 = eye(2) * -1; | 
					
						
							|  |  |  | 		Vector b2 = Vector_(2, 0.0, 0.0); | 
					
						
							| 
									
										
										
										
											2011-02-19 06:10:21 +08:00
										 |  |  | 		JacobianFactor::shared_ptr f2(new JacobianFactor(_x_, Ax1, _y_, Ay1, b2, | 
					
						
							| 
									
										
										
										
											2010-01-21 02:32:48 +08:00
										 |  |  | 				constraintModel)); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// construct the graph
 | 
					
						
							| 
									
										
										
										
											2012-06-10 02:52:22 +08:00
										 |  |  | 		JacobianFactorGraph fg; | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		fg.push_back(f1); | 
					
						
							|  |  |  | 		fg.push_back(f2); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return fg; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-10-14 23:32:05 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 	/* ************************************************************************* */ | 
					
						
							| 
									
										
										
										
											2010-10-09 11:09:58 +08:00
										 |  |  | 	VectorValues createSimpleConstraintValues() { | 
					
						
							|  |  |  | 		VectorValues config(vector<size_t>(2,2)); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		Vector v = Vector_(2, 1.0, -1.0); | 
					
						
							| 
									
										
										
										
											2010-10-09 06:04:47 +08:00
										 |  |  | 		config[_x_] = v; | 
					
						
							|  |  |  | 		config[_y_] = v; | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		return config; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-11-10 05:34:20 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 	/* ************************************************************************* */ | 
					
						
							| 
									
										
										
										
											2012-06-10 02:52:22 +08:00
										 |  |  | 	JacobianFactorGraph createSingleConstraintGraph() { | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		// create unary factor
 | 
					
						
							| 
									
										
										
										
											2010-10-09 06:04:47 +08:00
										 |  |  | 		// prior on _x_, mean = [1,-1], sigma=0.1
 | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		Matrix Ax = eye(2); | 
					
						
							|  |  |  | 		Vector b1(2); | 
					
						
							|  |  |  | 		b1(0) = 1.0; | 
					
						
							|  |  |  | 		b1(1) = -1.0; | 
					
						
							| 
									
										
										
										
											2011-01-21 06:22:00 +08:00
										 |  |  | 		//GaussianFactor::shared_ptr f1(new JacobianFactor(_x_, sigma0_1->Whiten(Ax), sigma0_1->whiten(b1), sigma0_1));
 | 
					
						
							| 
									
										
										
										
											2011-02-19 06:10:21 +08:00
										 |  |  | 		JacobianFactor::shared_ptr f1(new JacobianFactor(_x_, Ax, b1, sigma0_1)); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// create binary constraint factor
 | 
					
						
							| 
									
										
										
										
											2010-10-09 06:04:47 +08:00
										 |  |  | 		// between _x_ and _y_, that is going to be the only factor on _y_
 | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		// |1 2||x_1| + |10 0||y_1| = |1|
 | 
					
						
							|  |  |  | 		// |2 1||x_2|   |0 10||y_2|   |2|
 | 
					
						
							|  |  |  | 		Matrix Ax1(2, 2); | 
					
						
							|  |  |  | 		Ax1(0, 0) = 1.0; | 
					
						
							|  |  |  | 		Ax1(0, 1) = 2.0; | 
					
						
							|  |  |  | 		Ax1(1, 0) = 2.0; | 
					
						
							|  |  |  | 		Ax1(1, 1) = 1.0; | 
					
						
							|  |  |  | 		Matrix Ay1 = eye(2) * 10; | 
					
						
							|  |  |  | 		Vector b2 = Vector_(2, 1.0, 2.0); | 
					
						
							| 
									
										
										
										
											2011-02-19 06:10:21 +08:00
										 |  |  | 		JacobianFactor::shared_ptr f2(new JacobianFactor(_x_, Ax1, _y_, Ay1, b2, | 
					
						
							| 
									
										
										
										
											2010-01-21 02:32:48 +08:00
										 |  |  | 				constraintModel)); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// construct the graph
 | 
					
						
							| 
									
										
										
										
											2012-06-10 02:52:22 +08:00
										 |  |  | 		JacobianFactorGraph fg; | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		fg.push_back(f1); | 
					
						
							|  |  |  | 		fg.push_back(f2); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return fg; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-10-14 23:32:05 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 	/* ************************************************************************* */ | 
					
						
							| 
									
										
										
										
											2010-10-09 11:09:58 +08:00
										 |  |  | 	VectorValues createSingleConstraintValues() { | 
					
						
							|  |  |  | 		VectorValues config(vector<size_t>(2,2)); | 
					
						
							| 
									
										
										
										
											2010-10-09 06:04:47 +08:00
										 |  |  | 		config[_x_] = Vector_(2, 1.0, -1.0); | 
					
						
							|  |  |  | 		config[_y_] = Vector_(2, 0.2, 0.1); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		return config; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-10-14 23:32:05 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 	/* ************************************************************************* */ | 
					
						
							| 
									
										
										
										
											2012-06-10 02:52:22 +08:00
										 |  |  | 	JacobianFactorGraph createMultiConstraintGraph() { | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		// unary factor 1
 | 
					
						
							|  |  |  | 		Matrix A = eye(2); | 
					
						
							|  |  |  | 		Vector b = Vector_(2, -2.0, 2.0); | 
					
						
							| 
									
										
										
										
											2011-02-19 06:10:21 +08:00
										 |  |  | 		JacobianFactor::shared_ptr lf1(new JacobianFactor(_x_, A, b, sigma0_1)); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// constraint 1
 | 
					
						
							|  |  |  | 		Matrix A11(2, 2); | 
					
						
							|  |  |  | 		A11(0, 0) = 1.0; | 
					
						
							|  |  |  | 		A11(0, 1) = 2.0; | 
					
						
							|  |  |  | 		A11(1, 0) = 2.0; | 
					
						
							|  |  |  | 		A11(1, 1) = 1.0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Matrix A12(2, 2); | 
					
						
							|  |  |  | 		A12(0, 0) = 10.0; | 
					
						
							|  |  |  | 		A12(0, 1) = 0.0; | 
					
						
							|  |  |  | 		A12(1, 0) = 0.0; | 
					
						
							|  |  |  | 		A12(1, 1) = 10.0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Vector b1(2); | 
					
						
							|  |  |  | 		b1(0) = 1.0; | 
					
						
							|  |  |  | 		b1(1) = 2.0; | 
					
						
							| 
									
										
										
										
											2011-02-19 06:10:21 +08:00
										 |  |  | 		JacobianFactor::shared_ptr lc1(new JacobianFactor(_x_, A11, _y_, A12, b1, | 
					
						
							| 
									
										
										
										
											2010-01-21 02:32:48 +08:00
										 |  |  | 				constraintModel)); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// constraint 2
 | 
					
						
							|  |  |  | 		Matrix A21(2, 2); | 
					
						
							|  |  |  | 		A21(0, 0) = 3.0; | 
					
						
							|  |  |  | 		A21(0, 1) = 4.0; | 
					
						
							|  |  |  | 		A21(1, 0) = -1.0; | 
					
						
							|  |  |  | 		A21(1, 1) = -2.0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Matrix A22(2, 2); | 
					
						
							|  |  |  | 		A22(0, 0) = 1.0; | 
					
						
							|  |  |  | 		A22(0, 1) = 1.0; | 
					
						
							|  |  |  | 		A22(1, 0) = 1.0; | 
					
						
							|  |  |  | 		A22(1, 1) = 2.0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Vector b2(2); | 
					
						
							|  |  |  | 		b2(0) = 3.0; | 
					
						
							|  |  |  | 		b2(1) = 4.0; | 
					
						
							| 
									
										
										
										
											2011-02-19 06:10:21 +08:00
										 |  |  | 		JacobianFactor::shared_ptr lc2(new JacobianFactor(_x_, A21, _z_, A22, b2, | 
					
						
							| 
									
										
										
										
											2010-01-21 02:32:48 +08:00
										 |  |  | 				constraintModel)); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// construct the graph
 | 
					
						
							| 
									
										
										
										
											2012-06-10 02:52:22 +08:00
										 |  |  | 		JacobianFactorGraph fg; | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		fg.push_back(lf1); | 
					
						
							|  |  |  | 		fg.push_back(lc1); | 
					
						
							|  |  |  | 		fg.push_back(lc2); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return fg; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-10-14 23:32:05 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 	/* ************************************************************************* */ | 
					
						
							| 
									
										
										
										
											2010-10-09 11:09:58 +08:00
										 |  |  | 	VectorValues createMultiConstraintValues() { | 
					
						
							|  |  |  | 		VectorValues config(vector<size_t>(3,2)); | 
					
						
							| 
									
										
										
										
											2010-10-09 06:04:47 +08:00
										 |  |  | 		config[_x_] = Vector_(2, -2.0, 2.0); | 
					
						
							|  |  |  | 		config[_y_] = Vector_(2, -0.1, 0.4); | 
					
						
							|  |  |  | 		config[_z_] = Vector_(2, -4.0, 5.0); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		return config; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-10-14 23:32:05 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* ************************************************************************* */ | 
					
						
							|  |  |  | 	// Create key for simulated planar graph
 | 
					
						
							| 
									
										
										
										
											2012-02-07 07:32:59 +08:00
										 |  |  | 	Symbol key(int x, int y) { | 
					
						
							| 
									
										
										
										
											2012-06-03 03:28:21 +08:00
										 |  |  | 		return X(1000*x+y); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* ************************************************************************* */ | 
					
						
							| 
									
										
										
										
											2012-06-10 02:52:22 +08:00
										 |  |  | 	boost::tuple<GaussianFactorGraph, VectorValues> planarGraph(size_t N) { | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// create empty graph
 | 
					
						
							| 
									
										
										
										
											2012-01-29 04:47:43 +08:00
										 |  |  | 		NonlinearFactorGraph nlfg; | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// Create almost hard constraint on x11, sigma=0 will work for PCG not for normal
 | 
					
						
							| 
									
										
										
										
											2012-06-23 03:36:49 +08:00
										 |  |  | 		shared constraint(new simulated2D::Prior(Point2(1.0, 1.0), Isotropic::Sigma(2,1e-3), key(1,1))); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		nlfg.push_back(constraint); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Create horizontal constraints, 1...N*(N-1)
 | 
					
						
							| 
									
										
										
										
											2010-01-19 13:33:44 +08:00
										 |  |  | 		Point2 z1(1.0, 0.0); // move right
 | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		for (size_t x = 1; x < N; x++) | 
					
						
							|  |  |  | 			for (size_t y = 1; y <= N; y++) { | 
					
						
							| 
									
										
										
										
											2012-06-23 03:36:49 +08:00
										 |  |  | 				shared f(new simulated2D::Odometry(z1, Isotropic::Sigma(2,0.01), key(x, y), key(x + 1, y))); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 				nlfg.push_back(f); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Create vertical constraints, N*(N-1)+1..2*N*(N-1)
 | 
					
						
							| 
									
										
										
										
											2010-01-19 13:33:44 +08:00
										 |  |  | 		Point2 z2(0.0, 1.0); // move up
 | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		for (size_t x = 1; x <= N; x++) | 
					
						
							|  |  |  | 			for (size_t y = 1; y < N; y++) { | 
					
						
							| 
									
										
										
										
											2012-06-23 03:36:49 +08:00
										 |  |  | 				shared f(new simulated2D::Odometry(z2, Isotropic::Sigma(2,0.01), key(x, y), key(x, y + 1))); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 				nlfg.push_back(f); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Create linearization and ground xtrue config
 | 
					
						
							| 
									
										
										
										
											2010-10-09 11:09:58 +08:00
										 |  |  | 		Values zeros; | 
					
						
							| 
									
										
										
										
											2010-10-09 06:04:47 +08:00
										 |  |  |     for (size_t x = 1; x <= N; x++) | 
					
						
							|  |  |  |       for (size_t y = 1; y <= N; y++) | 
					
						
							|  |  |  |         zeros.insert(key(x, y), Point2()); | 
					
						
							|  |  |  | 		Ordering ordering(planarOrdering(N)); | 
					
						
							| 
									
										
										
										
											2010-10-09 11:09:58 +08:00
										 |  |  | 		VectorValues xtrue(zeros.dims(ordering)); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 		for (size_t x = 1; x <= N; x++) | 
					
						
							| 
									
										
										
										
											2010-10-09 06:04:47 +08:00
										 |  |  | 			for (size_t y = 1; y <= N; y++) | 
					
						
							|  |  |  | 				xtrue[ordering[key(x, y)]] = Point2(x,y).vector(); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// linearize around zero
 | 
					
						
							| 
									
										
										
										
											2012-06-10 02:52:22 +08:00
										 |  |  | 		return boost::make_tuple(*nlfg.linearize(zeros, ordering), xtrue); | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* ************************************************************************* */ | 
					
						
							|  |  |  | 	Ordering planarOrdering(size_t N) { | 
					
						
							|  |  |  | 		Ordering ordering; | 
					
						
							|  |  |  | 		for (size_t y = N; y >= 1; y--) | 
					
						
							|  |  |  | 			for (size_t x = N; x >= 1; x--) | 
					
						
							|  |  |  | 				ordering.push_back(key(x, y)); | 
					
						
							|  |  |  | 		return ordering; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* ************************************************************************* */ | 
					
						
							| 
									
										
										
										
											2012-06-10 02:52:22 +08:00
										 |  |  | 	pair<JacobianFactorGraph, JacobianFactorGraph > splitOffPlanarTree(size_t N, | 
					
						
							|  |  |  | 			const JacobianFactorGraph& original) { | 
					
						
							|  |  |  | 		JacobianFactorGraph T, C; | 
					
						
							| 
									
										
										
										
											2009-12-31 20:55:51 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// Add the x11 constraint to the tree
 | 
					
						
							|  |  |  | 		T.push_back(original[0]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Add all horizontal constraints to the tree
 | 
					
						
							|  |  |  | 		size_t i = 1; | 
					
						
							|  |  |  | 		for (size_t x = 1; x < N; x++) | 
					
						
							|  |  |  | 			for (size_t y = 1; y <= N; y++, i++) | 
					
						
							|  |  |  | 				T.push_back(original[i]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Add first vertical column of constraints to T, others to C
 | 
					
						
							|  |  |  | 		for (size_t x = 1; x <= N; x++) | 
					
						
							|  |  |  | 			for (size_t y = 1; y < N; y++, i++) | 
					
						
							|  |  |  | 				if (x == 1) | 
					
						
							|  |  |  | 					T.push_back(original[i]); | 
					
						
							|  |  |  | 				else | 
					
						
							|  |  |  | 					C.push_back(original[i]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return make_pair(T, C); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-10-14 23:32:05 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* ************************************************************************* */ | 
					
						
							| 
									
										
										
										
											2009-08-22 06:23:24 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-19 13:33:44 +08:00
										 |  |  | } // example
 | 
					
						
							| 
									
										
										
										
											2009-08-22 06:23:24 +08:00
										 |  |  | } // namespace gtsam
 |