【12】opencv图形绘制

参考:opencv——绘制图像(直线、矩形、椭圆、圆、填充)与文字_Spark!的博客-CSDN博客_opencv 填充椭圆

对于线的绘制:

void line(
            InputOutputArray img, 
            Point pt1, 
            Point pt2, 
            const Scalar& color,
            int thickness = 1, 
            int lineType = LINE_8, 
            int shift = 0
        );



@param img :输入图像。

@param pt1 :直线的第一个端点。

@param pt2 :直线的第二个端点。

@param color :直线的颜色。

@param thickness :直线的粗细程度。

@param lineType :直线类型,一共有三个:LINE_4,LINE_8,LINE_AA.其中LINE_AA是无锯齿直线。
这里就要注意,反锯齿就是在画完线后再进行渲染处理,占用资源也就更多。根据需要去选择是否使用。

@param shift :点坐标中的小数位数,一般用默认值。可以不写

对于方形的绘制:

void rectangle(
        Mat& img, 
        Rect rec,
        const Scalar& color, 
        int thickness = 1,
        int lineType = LINE_8, 
        int shift = 0
    );


@param img :输入图像。

@param rec :一个矩形,包含四个参数,横纵坐标以及长宽。

@param color :直线的颜色。

@param thickness :直线的粗细程度。

@param lineType :直线类型,一共有三个:LINE_4,LINE_8,LINE_AA.其中LINE_AA是无锯齿直线。

@param shift :点坐标中的小数位数,一般用默认值。可以不写

椭圆绘制:

void ellipse(
        InputOutputArray img, 
        Point center, 
        Size axes,
        double angle, 
        double startAngle,
        double endAngle,
        const Scalar& color, 
        int thickness = 1,
        int lineType = LINE_8, 
        int shift = 0
    );




@param img :输入图像。

@param center :椭圆中心。

@param axes :轴线。

@param angle :椭圆旋转角度,单位为度。

@param startAngle :椭圆弧的起始角,单位为度。

@param endAngle :椭圆弧的终止角,单位为度。

@param color :椭圆的颜色。

@param thickness :椭圆的粗细程度。

@param lineType :椭圆线类型,一共有三个:LINE_4,LINE_8,LINE_AA.其中LINE_AA是无锯齿直线。

@param shift :点坐标中的小数位数,一般用默认值。可以不写
若轴线的XY一样,那么这个椭圆就是一个圆

关于圆的绘制:

void circle(
        InputOutputArray img, 
        Point center, 
        int radius,
        const Scalar& color, 
        int thickness = 1,
        int lineType = LINE_8, 
        int shift = 0
    ); 


@param img:输入图像。

@param center:圆心。

@param radius:半径。

@param color :圆的颜色。

@param thickness :圆的粗细程度。

@param lineType :圆线的类型,一共有三个:LINE_4,LINE_8,LINE_AA.其中LINE_AA是无锯齿直线。

@param shift:点坐标中的小数位数,一般用默认值。可以不设置

设置填充:

void fillPoly(
        Mat & img, 
        const Point** pts,
        const int* npts, 
        int ncontours,
        const Scalar& color, 
        int lineType = LINE_8, 
        int shift = 0,
        Point offset = Point() 
    );



@param img:输入图像。

@param pts :多边形顶点。

@param npts:顶点个数。

@param ncontours:边的个数。

@param color:填充的颜色。

@param lineType :直线类型,一共有三个:LINE_4,LINE_8,LINE_AA.其中LINE_AA是无锯齿直线。

@param shift:点坐标中的小数位数,一般用默认值。可以不设置

@param offset:轮廓所有点的可选偏移。可以不设置

绘制文字:

void putText( 
        InputOutputArray img, 
        const String& text, 
        Point org,
        int fontFace, 
        double fontScale, 
        Scalar color,
        int thickness = 1, 
        int lineType = LINE_8,
        bool bottomLeftOrigin = false 
    );


@param img :输入图像。

@param text:添加的文字。

@param org:图像中文本字符串的左下角。

@param fontFace:文字的字体。

@param color :文字的颜色。

@param thickness :文字的粗细程度。

@param lineType:文字的类型,一共有三个:LINE_4,LINE_8,LINE_AA.其中LINE_AA是无锯齿直线。

@param bottomLeftOrigin:如果为真,则图像数据原点位于左下角。否则,它在左上角。

自己的实践代码:

#include 
#include 
using namespace std;
int main()
{
    //001 线
    cv::Mat image = cv::imread("0002.jpg");
    cv::Point a = cv::Point(0, 0);
    cv::Point b = cv::Point(360, 400);
    cv::Scalar c = cv::Scalar(48,129 ,173 );
    cv::line(image, a, b, c, 90, cv::LINE_4);
    
    //002矩形
    cv::Rect rect = cv::Rect(0, 0, 700, 700);//横纵长宽
    cv::Scalar color = cv::Scalar(0, 255, 255);
    rectangle(image, rect, color, 10, cv::LINE_4);

    //003椭圆
    cv::Point center = cv::Point(100, 100);
    cv::Size s1 = cv::Size(image.cols / 4, image.rows / 8);
    cv::Scalar color_2 = cv::Scalar(0, 0, 255);
    cv::ellipse(image, center, s1, 40, 0, 360, color_2, 4, cv::LINE_AA);
    //(TODO)椭圆这块还没明白

    //004圆
    cv::Point center_1 = cv::Point(120, 60);
    cv::Point center_2 = cv::Point(60, 120);
    cv::circle(image, center_1, 100, c, 80, cv::LINE_4);
    cv::circle(image, center_2, 100, c, 80, cv::LINE_4);

    //005填充操作
    cv::Point pst[1][6];
    pst[0][0] = cv::Point(120, 350);
    pst[0][1] = cv::Point(80, 370);
    pst[0][2] = cv::Point(100, 400);
    pst[0][3] = cv::Point(140, 400);
    pst[0][4] = cv::Point(160, 370);
    pst[0][5] = cv::Point(120, 350);
    const cv::Point* ppst[] = { pst[0] };
    int npt[] = { 6 };
    fillPoly(image, ppst, npt, 1, c, cv::LINE_4);


    //006输入文字
    cv::Point location = cv::Point(10, image.rows - 10);
    string text = "prprprprprprprprprprpr";
    putText(image, text, location, cv::FONT_HERSHEY_COMPLEX, 2, cv::Scalar(0, 0, 255), 3, 8);


    
    cv::imshow("【addLine】", image);
    cv::waitKey(0);
}

你可能感兴趣的:(opencv学习笔记,opencv,计算机视觉,人工智能)