资源简介
自己改写的中文汉字写入到图片Mat的程序
代码片段和文件信息
#include
#include
#include
#include
#include “Cv310Text.h“
Cv310Text::Cv310Text(const char *freeType)
{
assert(freeType != NULL);
// 打开字库文件 创建一个字体
if (FT_Init_FreeType(&m_library)) throw;
if (FT_New_Face(m_library freeType 0 &m_face)) throw;
// 设置字体输出参数
restoreFont();
// 设置C语言的字符集环境
setlocale(LC_ALL ““);
}
// 释放FreeType资源
Cv310Text::~Cv310Text()
{
FT_Done_Face(m_face);
FT_Done_FreeType(m_library);
}
// 设置字体参数:
//
// font - 字体类型 目前不支持
// size - 字体大小/空白比例/间隔比例/旋转角度
// underline - 下画线
// diaphaneity - 透明度
void Cv310Text::getFont(int *type CvScalar *size bool *underline float *diaphaneity)
{
if (type) *type = m_fontType;
if (size) *size = m_fontSize;
if (underline) *underline = m_fontUnderline;
if (diaphaneity) *diaphaneity = m_fontDiaphaneity;
}
void Cv310Text::setFont(int *type CvScalar *size bool *underline float *diaphaneity)
{
// 参数合法性检查
if (type)
{
if (type >= 0) m_fontType = *type;
}
if (size)
{
m_fontSize.val[0] = fabs(size->val[0]);
m_fontSize.val[1] = fabs(size->val[1]);
m_fontSize.val[2] = fabs(size->val[2]);
m_fontSize.val[3] = fabs(size->val[3]);
}
if (underline)
{
m_fontUnderline = *underline;
}
if (diaphaneity)
{
m_fontDiaphaneity = *diaphaneity;
}
}
// 恢复原始的字体设置
void Cv310Text::restoreFont()
{
m_fontType = 0; // 字体类型(不支持)
m_fontSize.val[0] = 20; // 字体大小
m_fontSize.val[1] = 0.5; // 空白字符大小比例
m_fontSize.val[2] = 0.1; // 间隔大小比例
m_fontSize.val[3] = 0; // 旋转角度(不支持)
m_fontUnderline = false; // 下画线(不支持)
m_fontDiaphaneity = 1.0; // 色彩比例(可产生透明效果)
// 设置字符大小
FT_Set_Pixel_Sizes(m_face (int)m_fontSize.val[0] 0);
}
// 输出函数(颜色默认为黑色)
int Cv310Text::putText(cv::Mat &frame const char *text CvPoint pos)
{
return putText(frame text pos CV_RGB(255 255 255));
}
int Cv310Text::putText(cv::Mat &frame const wchar_t *text CvPoint pos)
{
return putText(frame text pos CV_RGB(255 255 255));
}
//
int Cv310Text::putText(cv::Mat &frame const char *text CvPoint pos CvScalar color)
{
if (frame.empty()) return -1;
if (text == NULL) return -1;
//
int i;
for (i = 0; text[i] != ‘\0‘; ++i)
{
wchar_t wc = text[i];
// 解析双字节符号
if (!isascii(wc)) mbtowc(&wc &text[i++] 2);
// 输出当前的字符
putWChar(frame wc pos color);
}
return i;
}
int Cv310Text::putText(cv::Mat &frame const wchar_t *text CvPoint pos CvScalar color)
{
if (frame.empty()) return -1;
if (text == NULL) return -1;
//
int i;
for (i = 0; text[i] != ‘\0‘; ++i)
{
// 输出当前的字符
putWChar(frame text[i] pos color);
}
return i;
}
// 输出当前字符 更新m_pos位置
void Cv310Text::putWChar(cv::Mat &frame wchar_t wc CvPoint &pos CvScalar color)
{
// 根据unicode生成字体的二
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2016-11-11 18:07 Opencv显示中文\
文件 10143 2016-11-10 19:42 Opencv显示中文\1.jpg
文件 4471 2016-11-11 18:00 Opencv显示中文\Cv310Text.cpp
文件 4226 2016-11-11 18:05 Opencv显示中文\Cv310Text.h
文件 10576012 2016-07-17 06:33 Opencv显示中文\simfang.ttf
文件 388 2016-11-11 18:05 Opencv显示中文\源.cpp
评论
共有 条评论