| 
									
										
										
										
											2010-10-14 12:54:38 +08:00
										 |  |  | /* ----------------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-10 09:27:50 +08:00
										 |  |  |  * GTSAM Copyright 2010, Georgia Tech Research Corporation, | 
					
						
							| 
									
										
										
										
											2010-10-14 12:54:38 +08:00
										 |  |  |  * 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-09 02:46:56 +08:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * @file    timeCalibratedCamera.cpp | 
					
						
							|  |  |  |  * @brief   time CalibratedCamera derivatives | 
					
						
							|  |  |  |  * @author  Frank Dellaert | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-26 15:10:26 +08:00
										 |  |  | #include <gtsam/geometry/Point2.h>
 | 
					
						
							| 
									
										
										
										
											2010-08-20 01:23:19 +08:00
										 |  |  | #include <gtsam/geometry/CalibratedCamera.h>
 | 
					
						
							| 
									
										
										
										
											2015-05-26 15:10:26 +08:00
										 |  |  | #include <ctime>
 | 
					
						
							|  |  |  | #include <iostream>
 | 
					
						
							| 
									
										
										
										
											2010-08-09 02:46:56 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | using namespace std; | 
					
						
							|  |  |  | using namespace gtsam; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int main() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   int n = 100000; | 
					
						
							| 
									
										
										
										
											2010-08-09 02:46:56 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-10 09:27:50 +08:00
										 |  |  |   const Pose3 pose1(Rot3(Vector3(1, -1, -1).asDiagonal()), Point3(0, 0, 0.5)); | 
					
						
							| 
									
										
										
										
											2010-08-09 02:46:56 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   const CalibratedCamera camera(pose1); | 
					
						
							|  |  |  |   const Point3 point1(-0.08,-0.08, 0.0); | 
					
						
							| 
									
										
										
										
											2010-08-09 02:46:56 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   // Aug 8, iMac 3.06GHz Core i3
 | 
					
						
							|  |  |  |   //  371153 calls/second
 | 
					
						
							|  |  |  |   //  2.69431 musecs/call
 | 
					
						
							|  |  |  |   // AFTER collapse:
 | 
					
						
							|  |  |  |   //  1.10733e+06 calls/second
 | 
					
						
							|  |  |  |   //  0.90307 musecs/call
 | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     Matrix computed1, computed2; | 
					
						
							|  |  |  |     long timeLog = clock(); | 
					
						
							|  |  |  |     for(int i = 0; i < n; i++) | 
					
						
							|  |  |  |       camera.project(point1, computed1, computed2); | 
					
						
							|  |  |  |     long timeLog2 = clock(); | 
					
						
							|  |  |  |     double seconds = (double)(timeLog2-timeLog)/CLOCKS_PER_SEC; | 
					
						
							|  |  |  |     cout << ((double)n/seconds) << " calls/second" << endl; | 
					
						
							|  |  |  |     cout << ((double)seconds*1000000/n) << " musecs/call" << endl; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2010-08-09 02:46:56 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   return 0; | 
					
						
							| 
									
										
										
										
											2010-08-09 02:46:56 +08:00
										 |  |  | } |