|
void ALVAR_EXPORT | alvar::BuildHideTexture (IplImage *image, IplImage *hide_texture, Camera *cam, double gl_modelview[16], PointDouble topleft, PointDouble botright) |
| This function is used to construct a texture image which is needed to hide a marker from the original video frame. See SampleMarkerHide.cpp for example implementation. More...
|
|
void ALVAR_EXPORT | alvar::DrawCircles (IplImage *image, const CvSeq *contour, int radius, CvScalar color=CV_RGB(255, 0, 0)) |
| Draws circles to the contour points that are obtained by Labeling class. More...
|
|
void ALVAR_EXPORT | alvar::DrawCVEllipse (IplImage *image, CvBox2D &ellipse, CvScalar color, bool fill=false, double par=0) |
| Draws OpenCV ellipse. More...
|
|
void ALVAR_EXPORT | alvar::DrawLine (IplImage *image, const Line line, CvScalar color=CV_RGB(0, 255, 0)) |
| Draws a line. More...
|
|
void ALVAR_EXPORT | alvar::DrawLines (IplImage *image, const CvSeq *contour, CvScalar color=CV_RGB(255, 0, 0)) |
| Draws lines between consecutive contour points. More...
|
|
void | alvar::DrawPoints (IplImage *image, const vector< CvPoint > &points, CvScalar color) |
|
void ALVAR_EXPORT | alvar::DrawPoints (IplImage *image, const CvSeq *contour, CvScalar color=CV_RGB(255, 0, 0)) |
| Draws points of the contour that is obtained by Labeling class. More...
|
|
void ALVAR_EXPORT | alvar::DrawTexture (IplImage *image, IplImage *texture, Camera *cam, double gl_modelview[16], PointDouble topleft, PointDouble botright) |
| Draws the texture generated by BuildHideTexture to given video frame. For better performance, use OpenGL instead. See SampleMarkerHide.cpp for example implementation. More...
|
|