0%

freetype移植

freetype移植

类型匹配

1
2
CvScalar s = {0, 255, 0}; //!这里有一个类型不匹配问题:cv::Scalar 不能隐式转换为 CvScalar。
text.putText(img, msg, pos, s); // 绘制文本

中文字体使用宽字符

1
const wchar_t *msg = L"偏振图像"; // 使用宽字符

CvxText

  • 参考源码地址OpenCV 4.X 使用CvxText在图片显示汉字 | Learning BigBook (bigbookplus.github.io)
  • 注意linux引用opencv 使用/ 而在Windows使用\
  • 这份源文件有问题,如下图,注意临时对象不能右值引用,Visual Studio中会将其延长生命周期 linux-g++编译不会优化编译
    1
    2
    3
    4
    5
    6
    7
    8
    void CvxText::putWChar(cv::Mat &frame, wchar_t wc, CvPoint &pos, CvScalar color)
    {
    // IplImage* img = NULL;
    // img = &(cvIplImage(frame));
    //!临时对象非const不能右值引用
    IplImage temp_img = cvIplImage(frame); // 创建IplImage的副本
    IplImage* img = &temp_img; // 取得指针
    }

Makefile

  • 只需要freetype2.pc
  • 注意看系统中是否有freetype的动态库 避免多个库复用导致vim出现问题 我的Ubuntu使用的freetype动态链接库版本是libfreetype.so.6.17.1
  • 之前在Makefile中必须要加上LDFLAGS += -L/usr/lib/x86_64-linux-gnu/这句话是因为在移植freetype时执行sudo make install所以将另一个版本的pc文件或者动态/静态库安装在/usr/local/lib中 删除即可

msyh.ttf

  • 微软雅黑字体msyh.ttf需放到运行目录下

CvxText.cpp

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224

#include "CvxText.h"
#include <wchar.h>
#include <assert.h>
#include <locale.h>
#include <ctype.h>
#include "opencv2/core/core.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/imgproc/imgproc.hpp"

using namespace cv;

CvxText::CvxText(const char *freeType)
{
assert(freeType != NULL);

// ���ֿ��ļ�, ����һ������

if (FT_Init_FreeType(&m_library)) throw;
int result = 100;
//result = FT_New_Face(m_library, freeType, 0, &m_face);
if (result = FT_New_Face(m_library, freeType, 0, &m_face)) throw;


// ���������������

restoreFont();

// ����C���Ե��ַ�������

setlocale(LC_ALL, "");
}

// �ͷ�FreeType��Դ

CvxText::~CvxText()
{
FT_Done_Face(m_face);
FT_Done_FreeType(m_library);
}

// �����������:
//
// font - ��������, Ŀǰ��֧��
// size - �����С/�հױ���/�������/��ת�Ƕ�
// underline - �»���
// diaphaneity - ͸����

void CvxText::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 CvxText::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 CvxText::restoreFont()
{
m_fontType = 0; // ��������(��֧��)

m_fontSize.val[0] = 40; // �����С
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 CvxText::putText(cv::Mat &frame, const char *text, CvPoint pos)
{
//return putText(frame, text, pos, CV_RGB(255, 255, 255));
CvScalar s = {255, 255, 255};
return putText(frame, text, pos, s);
}
int CvxText::putText(cv::Mat &frame, const wchar_t *text, CvPoint pos)
{
//return putText(frame, text, pos, CV_RGB(255, 255, 255));
CvScalar s = {255, 255, 255};
return putText(frame, text, pos, s);
}

//

int CvxText::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 CvxText::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 CvxText::putWChar(cv::Mat &frame, wchar_t wc, CvPoint &pos, CvScalar color)
{
// IplImage* img = NULL;
// img = &(cvIplImage(frame));
//!临时对象非const不能右值引用
IplImage temp_img = cvIplImage(frame); // 创建IplImage的副本
IplImage* img = &temp_img; // 取得指针

// ����unicode��������Ķ�ֵλͼ

FT_UInt glyph_index = FT_Get_Char_Index(m_face, wc);
FT_Load_Glyph(m_face, glyph_index, FT_LOAD_DEFAULT);
FT_Render_Glyph(m_face->glyph, FT_RENDER_MODE_MONO);

//

FT_GlyphSlot slot = m_face->glyph;

// ������

int rows = slot->bitmap.rows;
int cols = slot->bitmap.width;

//

for (int i = 0; i < rows; ++i)
{
for (int j = 0; j < cols; ++j)
{
int off = ((img->origin == 0) ? i : (rows - 1 - i))
* slot->bitmap.pitch + j / 8;

if (slot->bitmap.buffer[off] & (0xC0 >> (j % 8)))
{
int r = (img->origin == 0) ? pos.y - (rows - 1 - i) : pos.y + i;;
int c = pos.x + j;

if (r >= 0 && r < img->height
&& c >= 0 && c < img->width)
{
CvScalar scalar = cvGet2D(img, r, c);

// ����ɫ���ں�

float p = m_fontDiaphaneity;
for (int k = 0; k < 4; ++k)
{
scalar.val[k] = scalar.val[k] * (1 - p) + color.val[k] * p;
}

cvSet2D(img, r, c, scalar);
}
}
} // end for
} // end for

// �޸���һ���ֵ����λ��

double space = m_fontSize.val[0] * m_fontSize.val[1];
double sep = m_fontSize.val[0] * m_fontSize.val[2];

pos.x += (int)((cols ? cols : space) + sep);
}


CvxText.h

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
#ifndef CVX_TEXT_H
#define CVX_TEXT_H

#include <ft2build.h>
#include FT_FREETYPE_H
#include "opencv2/core/core.hpp"
#include "opencv2/core/core_c.h"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/imgproc/imgproc.hpp"
class CvxText
{
// ��ֹcopy
CvxText& operator=(const CvxText&);
public:
CvxText(const char *freeType);
virtual ~CvxText();

/**
* ��ȡ���塣Ŀǰ��Щ�����в�֧�֡�
*
* \param font ��������, Ŀǰ��֧��
* \param size �����С/�հױ���/�������/��ת�Ƕ�
* \param underline �»���
* \param diaphaneity ͸����
*
* \sa setFont, restoreFont
*/

void getFont(int *type,
CvScalar *size = NULL, bool *underline = NULL, float *diaphaneity = NULL);

/**
* �������塣Ŀǰ��Щ�����в�֧�֡�
*
* \param font ��������, Ŀǰ��֧��
* \param size �����С/�հױ���/�������/��ת�Ƕ�
* \param underline �»���
* \param diaphaneity ͸����
*
* \sa getFont, restoreFont
*/

void setFont(int *type,
CvScalar *size = NULL, bool *underline = NULL, float *diaphaneity = NULL);

/**
* �ָ�ԭʼ���������á�
*
* \sa getFont, setFont
*/

void restoreFont();

//================================================================
//================================================================

/**
* �������(��ɫĬ��Ϊ��ɫ)����������������ַ���ֹͣ��
*
* \param img �����Ӱ��
* \param text �ı�����
* \param pos �ı�λ��
*
* \return ���سɹ�������ַ����ȣ�ʧ�ܷ���-1��
*/

int putText(cv::Mat &frame, const char *text, CvPoint pos);

/**
* �������(��ɫĬ��Ϊ��ɫ)����������������ַ���ֹͣ��
*
* \param img �����Ӱ��
* \param text �ı�����
* \param pos �ı�λ��
*
* \return ���سɹ�������ַ����ȣ�ʧ�ܷ���-1��
*/

int putText(cv::Mat &frame, const wchar_t *text, CvPoint pos);

/**
* ������֡���������������ַ���ֹͣ��
*
* \param img �����Ӱ��
* \param text �ı�����
* \param pos �ı�λ��
* \param color �ı���ɫ
*
* \return ���سɹ�������ַ����ȣ�ʧ�ܷ���-1��
*/

int putText(cv::Mat &frame, const char *text, CvPoint pos, CvScalar color);

/**
* ������֡���������������ַ���ֹͣ��
*
* \param img �����Ӱ��
* \param text �ı�����
* \param pos �ı�λ��
* \param color �ı���ɫ
*
* \return ���سɹ�������ַ����ȣ�ʧ�ܷ���-1��
*/
int putText(cv::Mat &frame, const wchar_t *text, CvPoint pos, CvScalar color);

//================================================================
//================================================================

private:

// �����ǰ�ַ�, ����m_posλ��

void putWChar(cv::Mat &frame, wchar_t wc, CvPoint &pos, CvScalar color);

//================================================================
//================================================================

private:

FT_Library m_library; // �ֿ�
FT_Face m_face; // ����

//================================================================
//================================================================

// Ĭ�ϵ������������

int m_fontType;
CvScalar m_fontSize;
bool m_fontUnderline;
float m_fontDiaphaneity;
};

#endif