| 
									
										
										
										
											2015-07-06 02:18:45 +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 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  * -------------------------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * @file    timeSFMBALcamTnav.cpp | 
					
						
							|  |  |  |  * @brief   time SFM with BAL file, expressions with camTnav pose | 
					
						
							|  |  |  |  * @author  Frank Dellaert | 
					
						
							|  |  |  |  * @date    July 5, 2015 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "timeSFMBAL.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <gtsam/slam/expressions.h>
 | 
					
						
							|  |  |  | #include <gtsam/nonlinear/ExpressionFactor.h>
 | 
					
						
							|  |  |  | #include <gtsam/geometry/Cal3Bundler.h>
 | 
					
						
							|  |  |  | #include <gtsam/geometry/Point3.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | using namespace std; | 
					
						
							|  |  |  | using namespace gtsam; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int main(int argc, char* argv[]) { | 
					
						
							|  |  |  |   // parse options and read BAL file
 | 
					
						
							|  |  |  |   SfM_data db = preamble(argc, argv); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   // Build graph using conventional GeneralSFMFactor
 | 
					
						
							|  |  |  |   NonlinearFactorGraph graph; | 
					
						
							|  |  |  |   for (size_t j = 0; j < db.number_tracks(); j++) { | 
					
						
							| 
									
										
										
										
											2016-05-21 09:22:30 +08:00
										 |  |  |     for (const SfM_Measurement& m: db.tracks[j].measurements) { | 
					
						
							| 
									
										
										
										
											2015-07-06 02:18:45 +08:00
										 |  |  |       size_t i = m.first; | 
					
						
							|  |  |  |       Point2 z = m.second; | 
					
						
							|  |  |  |       Pose3_ camTnav_(C(i)); | 
					
						
							|  |  |  |       Cal3Bundler_ calibration_(K(i)); | 
					
						
							|  |  |  |       Point3_ nav_point_(P(j)); | 
					
						
							|  |  |  |       graph.addExpressionFactor( | 
					
						
							|  |  |  |           gNoiseModel, z, | 
					
						
							|  |  |  |           uncalibrate(calibration_,  // now using transform_from !!!:
 | 
					
						
							|  |  |  |                       project(transform_from(camTnav_, nav_point_)))); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   Values initial; | 
					
						
							|  |  |  |   size_t i = 0, j = 0; | 
					
						
							| 
									
										
										
										
											2016-05-21 09:22:30 +08:00
										 |  |  |   for (const SfM_Camera& camera: db.cameras) { | 
					
						
							| 
									
										
										
										
											2015-07-06 02:18:45 +08:00
										 |  |  |     initial.insert(C(i), camera.pose().inverse());  // inverse !!!
 | 
					
						
							|  |  |  |     initial.insert(K(i), camera.calibration()); | 
					
						
							|  |  |  |     i += 1; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2016-05-21 09:22:30 +08:00
										 |  |  |   for (const SfM_Track& track: db.tracks) | 
					
						
							| 
									
										
										
										
											2015-07-06 02:18:45 +08:00
										 |  |  |     initial.insert(P(j++), track.p); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   bool separateCalibration = true; | 
					
						
							|  |  |  |   return optimize(db, graph, initial, separateCalibration); | 
					
						
							|  |  |  | } |