使用C++进行文本文字插入(opencv)

本文介绍如何利用C++和OpenCV库在图像中插入文本,提供了详细的步骤和参考链接,帮助读者理解并实践相关技术。
摘要由CSDN通过智能技术生成


#include <iostream>
#include <opencv2/core.hpp>
#include <opencv2/highgui.hpp>

using namespace std;
using namespace cv;


int main()
{
	string text = "I Love You Baby ! ";
	int fontface = FONT_HERSHEY_COMPLEX_SMALL;
	double fontscale = 2;
	int thickness = 3;

	Mat image(700, 900, CV_8UC3, Scalar::all(0));
	int baseline = 0;

	Size textsize = getTextSize(text, fontface, fontscale, thickness, &baseline);
	baseline += thickness;

	Point textorg((image.cols - textsize.width) / 2, 
		(image.rows + textsize.height) / 2);
	rectangle(image, textorg + Point(0, baseline), textorg + Point(textsize.width,
		-textsize.height), Scalar(0, 0, 255));
	line(image, textorg + Point(0, thickness), textorg + Point(textsize.width, thickness),
		Scalar(0, 0, 255));
	putText(image, text, textorg, fontface, fontscale, Scalar::all(255), thickness, 8);
	imshow("添加文档:"
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值