----基本图形的绘制
void line(Mat& img, Point pt1, Point pt2, const Scalar& color, int thickness=1, int lineType=8, int shift=0);
第一个参数:表示要绘制线段的图像。
第二个参数:表示线段的起点。
第三个参数:表示线段的终点。
第四个参数:表示线段的颜色。
第五个参数:表示线段的粗细。
第六个参数:表示线段的类型。可以取值8,4,和CV_AA,分别代表8邻接连接线,4邻接连接线和反锯齿连接线。默认值为8。
第七个参数:表示坐标点小数点位数。
#include
using namespace cv;
int main()
{
Mat src = imread("C:\\Users\\441\\Desktop\\ZL\\夏目\\1.jpg");
line(src, Point(1, 1), Point(250, 250), Scalar(255, 0, 0), 1, CV_AA);
imwrite("src.jpg", src);
imshow("line", src);
waitKey(0);
}
void cvEllipse( CvArr* img, CvPoint center, CvSize axes, double angle, double start_angle, double end_angle, CvScalar color, int thickness=1, int line_type=8, int shift=0 );
第一个参数:表示要绘制椭圆的图像。
第二个参数:表示椭圆圆心坐标。(Point)
第三个参数:表示轴的长度。(Size)
第四个参数:表示偏转的角度。
第五个参数:表示圆弧起始角的角度。.
第六个参数:表示圆弧终结角的角度。
第七个参数:表示线条的颜色。(Scalar)
第八个参数:表示线条的粗细程度。
第九个参数:表示线条的类型。
第十个参数:表示圆心坐标点和数轴的精度。
#include
using namespace cv;
int main()
{
Mat src = imread("C:\\Users\\441\\Desktop\\ZL\\夏目\\1.jpg");
ellipse(src, Point(270, 230), Size(100, 50), 60, 0, 360, Scalar(255, 0, 0), 1, 8);
imwrite("ellipse.jpg", src);
imshow("ellipse", src);
waitKey(0);
}
void circle(InputOutputArray img, Point center, int radius, const Scalar& color, int thickness = 1, int lineType = LINE_8, int shift = 0);
第一个参数:表示要绘制圆的图像。
第二个参数:表示圆心坐标。
第三个参数:表示圆的半径。
第四个参数:表示线条的颜色。
第五个参数:表示线条的粗细程度。
第六个参数:表示线条的类型。
第七个参数:表示圆心坐标点和数轴的精度。
#include
using namespace cv;
int main()
{
Mat src = imread("C:\\Users\\441\\Desktop\\ZL\\夏目\\1.jpg");
circle(src, Point(270, 230), 100, Scalar(255, 0, 0), 1, CV_AA);
imwrite("circle.jpg", src);
imshow("circle", src);
waitKey(0);
}
void fillPoly(Mat& img, const Point** pts, const int* npts, int ncontours, const Scalar& color, int lineType=8, int shift=0, Point offset=Point());
第一个参数:表示要绘制填充多边形的图像。
第二个参数:表示指向多边形的指针数组。(const)
第三个参数:表示多边形的顶点个数。(数组)
第四个参数:表示多边形的个数。
第五个参数:表示填充的颜色。
第六个参数:表示线条的粗细程度。
第七个参数:顶点坐标的小数点位数。
#include
using namespace cv;
int main()
{
Mat src = imread("C:\\Users\\441\\Desktop\\ZL\\夏目\\1.jpg");
Point p[1][5] = {{Point(100, 100), Point(150, 50), Point(200, 100),Point(250,200),Point(50, 200)}};
const Point* pp[] = { p[0]};
int n[] = {5};
fillPoly(src, pp, n, 1, Scalar(255, 0, 0));
imwrite("polygon.jpg", src);
imshow("polygon", src);
waitKey(0);
}
Point(100, 100), Point(150, 50), Point(200, 100),Point(250,200),Point(50, 200)
Point(100, 100), Point(150, 50),Point(250,200), Point(200, 100),Point(50, 200)
根据点的先后顺序进行画图。
void polylines(Mat& img, const Point** pts, const int* npts, int ncontours, bool isClosed, const Scalar& color, int thickness=1, int lineType=8, int shift=0);
第一个参数:表示要绘制多边形的图像。
第二个参数:表示指向多边形的指针数组。(const)
第三个参数:表示多边形的顶点个数。(数组)
第四个参数:表示多边形的个数。
第五个参数:表示多边形是否闭合,1表示闭合,0表示不闭合。
第六个参数:表示多边形的颜色。
第七个参数:表示线条的粗细程度。
第八个参数:表示线条的类型。
第九个参数:表示顶点坐标的小数点位数。
#include
using namespace cv;
int main()
{
Mat src = imread("C:\\Users\\441\\Desktop\\ZL\\夏目\\1.jpg");
Point p[2][5] = { {Point(100, 100), Point(150, 50),Point(250,200), Point(200, 100),Point(50, 200)},{Point(350,350),Point(450,300),Point(400,200)} };
const Point* pp[] = { p[0],p[1] };
int n[] = { 5,3 };
polylines(src, pp, n, 2, 1, Scalar(255, 0, 0), 1, CV_AA);
imwrite("polylines.jpg", src);
imshow("polylines", src);
waitKey(0);
}
void rectangle(InputOutputArray img, Point pt1, Point pt2, const Scalar& color, int thickness = 1, int lineType = LINE_8, int shift = 0);
第一个参数:表示要绘制矩形的图像。
第二个参数:表示矩形左上角顶点。
第三个参数:表示矩形右下角顶点。
第四个参数:表示矩形的颜色。
第五个参数:表示线条的粗细程度。
FILLED = -1, //取负值时(如 CV_FILLED)函数绘制填充了色彩的矩形
第六个参数:表示线条的类型。其中:
LINE_4 = 4,
LINE_8 = 8,
LINE_AA = 16,
#include
using namespace cv;
int main()
{
Mat src = imread("C:\\Users\\441\\Desktop\\ZL\\夏目\\1.jpg");
rectangle(src, Point(0, 0), Point(200, 200), Scalar(255, 0, 0), -1, 8);
imwrite("rectangle.jpg", src);
imshow("rectangle", src);
waitKey(0);
}
void putText(Mat& img, const string& text, Point org, int fontFace, double fontScale, Scalar color, int thickness=1, int lineType=8, bool bottomLeftOrigin=false);
第一个参数:表示要添加文字的图像。
第二个参数:表示要添加的文字。
第三个参数:表示文字在图像左下角的坐标。
第四个参数:表示字体的类型。
FONT_HERSHEY_SIMPLEX, FONT_HERSHEY_PLAIN,
FONT_HERSHEY_DUPLEX,FONT_HERSHEY_COMPLEX,
FONT_HERSHEY_TRIPLEX, FONT_HERSHEY_COMPLEX_SMALL,
FONT_HERSHEY_SCRIPT_SIMPLEX, FONT_HERSHEY_SCRIPT_COMPLEX
以上所有类型都可以配合 FONT_HERSHEY_ITALIC使用,产生斜体效果。
第五个参数:表示字体的大小。
第六个参数:表示字体的颜色。
第七个参数:表示字体的粗细。
第八个参数:表示线条的类型。
第九个参数:true, 图像数据原点在左下角. false, 图像数据原点在左上角。
#include
using namespace cv;
int main()
{
Mat src = imread("C:\\Users\\441\\Desktop\\ZL\\夏目\\1.jpg");
putText(src, "hello Natsume", Point(370, 350), FONT_HERSHEY_SIMPLEX, 1, Scalar(255, 0, 0), 1, 8, false);
imwrite("text.jpg", src);
imshow("text", src);
waitKey(0);
}