Classes | |
| class | HomographyOptimizerInterface |
| Class for FULL homography optimizer interface. 8 degrees of freedom in the homography. More... | |
| class | IBGAffineHomographyOptimizerCvWrapper |
| class | IBGFullHomographyOptimizerCvWrapper |
| class | IBGHomographyOptimizerCvWrapper |
| class | IBGStretchHomographyOptimizerCvWrapper |
Functions | |
| void | cv2vtecHomography (const cv::Mat &cv_h, VTEC::Homography &vtec_h) |
| Converts opencv matrix to vtec homography. More... | |
| void | cv2vtecImg (const cv::Mat &image, VTEC::Image &vtec_img) |
| Converts a opencv image to vtec format. More... | |
| void | drawResult (cv::Mat &image, cv::Mat H, double score, int bbox_size_x, int bbox_size_y, cv::Scalar color=cv::Scalar(255, 255, 255)) |
| Draws a tracking result in an image. More... | |
| void | vtec2cvHomography (const VTEC::Homography &vtec_h, cv::Mat &cv_h) |
| Converts vtec homography to opencv matrix. More... | |
| void | vtec2cvImg (const VTEC::Image &vtec_img, cv::Mat &image) |
| Converts vtec image to opencv format. More... | |
| void | warpPoints (cv::Point &p, cv::Mat H) |
| Warp a point using an homography matrix. More... | |
| void | warpPoints (cv::Point2f &p, cv::Mat H) |
| Warp a point with an homography matrix. More... | |
| void VTEC::cv2vtecHomography | ( | const cv::Mat & | cv_h, |
| VTEC::Homography & | vtec_h | ||
| ) |
Converts opencv matrix to vtec homography.
| [in] | cv_h | The cv h |
| vtec_h | The vtec h |
Definition at line 71 of file vtec_opencv.h.
| void VTEC::cv2vtecImg | ( | const cv::Mat & | image, |
| VTEC::Image & | vtec_img | ||
| ) |
Converts a opencv image to vtec format.
| [in] | image | The image |
| vtec_img | The vtec image |
Definition at line 17 of file vtec_opencv.h.
| void VTEC::drawResult | ( | cv::Mat & | image, |
| cv::Mat | H, | ||
| double | score, | ||
| int | bbox_size_x, | ||
| int | bbox_size_y, | ||
| cv::Scalar | color = cv::Scalar(255, 255, 255) |
||
| ) |
| void VTEC::vtec2cvHomography | ( | const VTEC::Homography & | vtec_h, |
| cv::Mat & | cv_h | ||
| ) |
Converts vtec homography to opencv matrix.
| [in] | vtec_h | The vtec h |
| cv_h | The cv h |
Definition at line 53 of file vtec_opencv.h.
| void VTEC::vtec2cvImg | ( | const VTEC::Image & | vtec_img, |
| cv::Mat & | image | ||
| ) |
Converts vtec image to opencv format.
| [in] | vtec_img | The vtec image |
| image | The image |
Definition at line 35 of file vtec_opencv.h.
| void VTEC::warpPoints | ( | cv::Point & | p, |
| cv::Mat | H | ||
| ) |
| void VTEC::warpPoints | ( | cv::Point2f & | p, |
| cv::Mat | H | ||
| ) |
Warp a point with an homography matrix.
| p | { parameter_description } | |
| [in] | H | { parameter_description } |
Definition at line 88 of file vtec_opencv.h.