码迷,mamicode.com
首页 > 编程语言 > 详细

【opencv】c++绘制文字

时间:2018-12-01 00:06:18      阅读:746      评论:0      收藏:0      [点我收藏+]

标签:sdn   尺寸   int   ++   details   amp   div   rgb   phi   

 

cv::putText(img,std::to_string(i),p,0,2,cv::Scalar(0,0,255)); // 0为字体,2为字号
    void cv::putText(
        cv::Mat& img, // 待绘制的图像
        const string& text, // 待绘制的文字
        cv::Point origin, // 文本框的左下角
        int fontFace, // 字体 (如cv::FONT_HERSHEY_PLAIN)
        double fontScale, // 尺寸因子,值越大文字越大
        cv::Scalar color, // 线条的颜色(RGB)
        int thickness = 1, // 线条宽度
        int lineType = 8, // 线型(4邻域或8邻域,默认8邻域)
        bool bottomLeftOrigin = false // true=‘origin at lower left‘
    )
--------------------- 
作者:PHILOS_THU 
来源:CSDN 
原文:https://blog.csdn.net/guduruyu/article/details/68491211 
版权声明:本文为博主原创文章,转载请附上博文链接!

 

【opencv】c++绘制文字

标签:sdn   尺寸   int   ++   details   amp   div   rgb   phi   

原文地址:https://www.cnblogs.com/zealousness/p/10046979.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!