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. | |
Homography () | |
Constructor. | |
void | ProjectPoints (const std::vector< PointDouble > &from, std::vector< PointDouble > &to) |
Project points using the Homography. | |
Public Attributes | |
CvMat | H |
double | H_data [3][3] |
Simple Homography class for finding and projecting points between two planes.
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.
CvMat alvar::Homography::H |
double alvar::Homography::H_data[3][3] |