| 
									
										
										
										
											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-01-02 22:28:18 +08:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * @file    timeRot3.cpp | 
					
						
							|  |  |  |  * @brief   time Rot3 functions | 
					
						
							|  |  |  |  * @author  Frank Dellaert | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <time.h>
 | 
					
						
							|  |  |  | #include <iostream>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-20 01:23:19 +08:00
										 |  |  | #include <gtsam/geometry/Rot3.h>
 | 
					
						
							| 
									
										
										
										
											2010-01-02 22:28:18 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | using namespace std; | 
					
						
							|  |  |  | using namespace gtsam; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-07 03:25:19 +08:00
										 |  |  | #define TEST(TITLE,STATEMENT) \
 | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   cout << endl << TITLE << endl;\ | 
					
						
							|  |  |  |   timeLog = clock();\ | 
					
						
							|  |  |  |   for(int i = 0; i < n; i++)\ | 
					
						
							|  |  |  |   STATEMENT;\ | 
					
						
							|  |  |  |   timeLog2 = clock();\ | 
					
						
							|  |  |  |   seconds = (double)(timeLog2-timeLog)/CLOCKS_PER_SEC;\ | 
					
						
							|  |  |  |   cout << seconds << " seconds" << endl;\ | 
					
						
							|  |  |  |   cout << ((double)n/seconds) << " calls/second" << endl; | 
					
						
							| 
									
										
										
										
											2012-01-07 03:25:19 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-02 22:28:18 +08:00
										 |  |  | int main() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-01-08 05:09:53 +08:00
										 |  |  |   int n = 100000; long timeLog, timeLog2; double seconds; | 
					
						
							| 
									
										
										
										
											2012-10-02 22:40:07 +08:00
										 |  |  |   // create a random direction:
 | 
					
						
							|  |  |  |   double norm=sqrt(1.0+16.0+4.0); | 
					
						
							|  |  |  |   double x=1.0/norm, y=4.0/norm, z=2.0/norm; | 
					
						
							| 
									
										
										
										
											2014-11-23 10:07:27 +08:00
										 |  |  |   Vector v = (Vector(3) << x, y, z).finished(); | 
					
						
							| 
									
										
										
										
											2015-07-06 07:11:04 +08:00
										 |  |  |   Rot3 R = Rot3::Rodrigues(0.1, 0.4, 0.2), R2 = R.retract(v); | 
					
						
							| 
									
										
										
										
											2012-01-07 03:25:19 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-06 07:33:10 +08:00
										 |  |  |   TEST("Rodriguez formula given axis angle", Rot3::AxisAngle(v,0.001)) | 
					
						
							| 
									
										
										
										
											2015-07-06 07:11:04 +08:00
										 |  |  |   TEST("Rodriguez formula given canonical coordinates", Rot3::Rodrigues(v)) | 
					
						
							| 
									
										
										
										
											2012-01-07 03:25:19 +08:00
										 |  |  |   TEST("Expmap", R*Rot3::Expmap(v)) | 
					
						
							|  |  |  |   TEST("Retract", R.retract(v)) | 
					
						
							| 
									
										
										
										
											2012-01-08 05:09:53 +08:00
										 |  |  |   TEST("Logmap", Rot3::Logmap(R.between(R2))) | 
					
						
							| 
									
										
										
										
											2012-01-07 03:25:19 +08:00
										 |  |  |   TEST("localCoordinates", R.localCoordinates(R2)) | 
					
						
							| 
									
										
										
										
											2012-01-08 05:09:53 +08:00
										 |  |  |   TEST("Slow rotation matrix",Rot3::Rz(z)*Rot3::Ry(y)*Rot3::Rx(x)) | 
					
						
							|  |  |  |   TEST("Fast Rotation matrix", Rot3::RzRyRx(x,y,z)) | 
					
						
							| 
									
										
										
										
											2010-01-10 20:25:46 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-01-02 22:28:18 +08:00
										 |  |  |   return 0; | 
					
						
							|  |  |  | } |