Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
932 B
49 lines
932 B
5 years ago
|
// This file is part of OpenCV project.
|
||
|
// It is subject to the license terms in the LICENSE file found in the top-level directory
|
||
|
// of this distribution and at http://opencv.org/license.html.
|
||
|
//
|
||
|
// Copyright (C) 2019 Intel Corporation
|
||
|
|
||
|
|
||
|
#ifdef HAVE_FREETYPE
|
||
|
|
||
|
#ifndef OPENCV_FT_RENDER_PRIV_HPP
|
||
|
#define OPENCV_FT_RENDER_PRIV_HPP
|
||
|
|
||
4 years ago
|
#include "ft_render.hpp"
|
||
5 years ago
|
|
||
|
#include <ft2build.h>
|
||
|
#include FT_FREETYPE_H
|
||
|
|
||
|
namespace cv
|
||
|
{
|
||
|
namespace gapi
|
||
|
{
|
||
|
namespace wip
|
||
|
{
|
||
|
namespace draw
|
||
|
{
|
||
|
|
||
|
class FTTextRender::Priv
|
||
|
{
|
||
|
public:
|
||
|
explicit Priv(const std::string& path);
|
||
|
|
||
|
cv::Size getTextSize(const std::wstring& text, int fh, int* baseline);
|
||
|
void putText(cv::Mat& mat, const std::wstring& text, const cv::Point& org, int fh);
|
||
|
|
||
|
~Priv();
|
||
|
|
||
|
private:
|
||
|
FT_Library m_library;
|
||
|
FT_Face m_face;
|
||
|
};
|
||
|
|
||
|
} // namespace draw
|
||
|
} // namespace wip
|
||
|
} // namespace gapi
|
||
|
} // namespace cv
|
||
|
|
||
|
#endif // OPENCV_FT_RENDER_PRIV_HPP
|
||
|
#endif // HAVE_FREETYPE
|