#include "opencv/cv.h"
Go to the source code of this file.
Namespaces | |
namespace | PrimitivesDrawerCV |
Functions for drawing 2D primitives into a CByteImage using OpenCV. | |
Functions | |
void | PrimitivesDrawerCV::DrawCircle (CByteImage *pImage, const Vec2d &mid_point, double radius, int r=255, int g=255, int b=255, int thickness=1) |
Deprecated. | |
void | PrimitivesDrawerCV::DrawConvexPolygon (CByteImage *pImage, int *pPoints, int nPoints, int r=255, int g=255, int b=255, int thickness=1) |
Draws a polygon into a CByteImage. | |
void | PrimitivesDrawerCV::DrawEllipse (CByteImage *pImage, const Ellipse2d &ellipse, int r=255, int g=255, int b=255, int thickness=1) |
Deprecated. | |
void | PrimitivesDrawerCV::DrawLine (CByteImage *pImage, const PointPair2d &line, int r=255, int g=255, int b=255, int thickness=1) |
Deprecated. | |
void | PrimitivesDrawerCV::DrawLine (CByteImage *pImage, const Vec2d &p1, const Vec2d &p2, int r=255, int g=255, int b=255, int thickness=1) |
Deprecated. | |
void | PrimitivesDrawerCV::DrawRegion (CByteImage *pImage, const MyRegion ®ion, int r=255, int g=255, int b=255, int thickness=1) |
Deprecated. | |
void | PrimitivesDrawerCV::PutText (CByteImage *pImage, const char *pText, double x, double y, double scale_x, double scale_y, int r=255, int g=255, int b=255, int thickness=1) |
Draws text into a CByteImage. |