/
Alx89
/
OpenCV
Обзор
Документация
Войти
/
Alx89
/
OpenCV
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
4.x
modules/gapi/src/backends/render/ft_render.hpp
44 строки
934 B
Anatoliy Talamanov
Merge pull request #18600 from TolyaTalamanov:at/implement-render-using-stateful
26 окт 2020, 22:55
Не верифицирован
26 окт 2020, 22:55
3d45639
Код
Авторство
О чём код?
// 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 #ifndef OPENCV_FREETYPE_TEXT_RENDER_HPP #define OPENCV_FREETYPE_TEXT_RENDER_HPP #include <memory> #include <string> #include <opencv2/core.hpp> #include <opencv2/gapi/own/exports.hpp> namespace cv { namespace gapi { namespace wip { namespace draw { class GAPI_EXPORTS FTTextRender { public: class Priv; explicit FTTextRender(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); private: std::shared_ptr<Priv> m_priv; }; } // namespace draw } // namespace wip } // namespace gapi } // namespace cv #endif // OPENCV_FREETYPE_TEXT_RENDER_HPP