TooN Algorithm Library - tag  0.2
threepointpose.h
Go to the documentation of this file.
1 #ifndef THREEPOINTPOSE_H
2 #define THREEPOINTPOSE_H
3 
4 #include <TooN/se3.h>
5 #include <vector>
6 
7 namespace tag {
8 
9 
12 
23 int three_point_pose(const TooN::Vector<3> x[], const TooN::Vector<2> z[], std::vector<TooN::SE3<> >& poses);
24 
35 int three_point_pose(const TooN::Vector<3> x[], const TooN::Vector<3> rays[], std::vector<TooN::SE3<> >& poses);
36 
37 }
38 
39 #endif