Simple Homography class for finding and projecting points between two planes. More...
#include <Camera.h>
| Public Member Functions | |
| void | Find (const std::vector< PointDouble > &pw, const std::vector< PointDouble > &pi) | 
| Find Homography for two point-sets.  More... | |
| Homography () | |
| Constructor.  More... | |
| void | ProjectPoints (const std::vector< PointDouble > &from, std::vector< PointDouble > &to) | 
| Project points using the Homography.  More... | |
| Public Attributes | |
| CvMat | H | 
| double | H_data [3][3] | 
Simple Homography class for finding and projecting points between two planes.
| alvar::Homography::Homography | ( | ) | 
Constructor.
Definition at line 834 of file Camera.cpp.
| void alvar::Homography::Find | ( | const std::vector< PointDouble > & | pw, | 
| const std::vector< PointDouble > & | pi | ||
| ) | 
Find Homography for two point-sets.
Definition at line 838 of file Camera.cpp.
| void alvar::Homography::ProjectPoints | ( | const std::vector< PointDouble > & | from, | 
| std::vector< PointDouble > & | to | ||
| ) | 
Project points using the Homography.
Definition at line 868 of file Camera.cpp.