File: ftp_render_test.cpp

package info (click to toggle)
opencv 4.10.0%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 282,092 kB
  • sloc: cpp: 1,178,079; xml: 682,621; python: 49,092; lisp: 31,150; java: 25,469; ansic: 11,039; javascript: 6,085; sh: 1,214; cs: 601; perl: 494; objc: 210; makefile: 173
file content (73 lines) | stat: -rw-r--r-- 2,104 bytes parent folder | download | duplicates (3)
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
// 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) 2018 Intel Corporation


#include "../test_precomp.hpp"

#ifdef HAVE_FREETYPE

#include <random>

#include <opencv2/core/utils/configuration.private.hpp>

#include "backends/render/ft_render.hpp"

namespace opencv_test
{
    static std::string getFontPath()
    {
        static std::string path = cv::utils::getConfigurationParameterString("OPENCV_TEST_FREETYPE_FONT_PATH",
                                                                         "/usr/share/fonts/truetype/wqy/wqy-microhei.ttc");
        return path;
    }

    inline void RunTest(const std::string& font,
                        size_t num_iters,
                        size_t lower_char_code,
                        size_t upper_char_code)
    {
        cv::gapi::wip::draw::FTTextRender ftpr(font);

        std::mt19937 gen{std::random_device()()};
        std::uniform_int_distribution<int> dist(lower_char_code, upper_char_code);
        std::uniform_int_distribution<int> dist_size(2, 200);

        for (size_t i = 0; i < num_iters; ++i)
        {
            size_t text_size = dist_size(gen);
            std::wstring text;

            for (size_t j = 0; j < text_size; ++j)
            {
                wchar_t c = dist(gen);
                text += c;
            }

            int fh       = dist_size(gen);
            int baseline = 0;
            cv::Size size;

            ASSERT_NO_THROW(size = ftpr.getTextSize(text, fh, &baseline));

            cv::Mat bmp(size, CV_8UC1, cv::Scalar::all(0));
            cv::Point org(0, bmp.rows - baseline);

            ASSERT_NO_THROW(ftpr.putText(bmp, text, org, fh));
        }
    }

    TEST(FTTextRenderTest, Smoke_Test_Ascii)
    {
        RunTest(getFontPath(), 2000, 32, 126);
    }

    TEST(FTTextRenderTest, Smoke_Test_Unicode)
    {
        RunTest(getFontPath(), 2000, 20320, 30000);
    }
} // namespace opencv_test

#endif // HAVE_FREETYPE