aboutsummaryrefslogtreecommitdiff
path: root/tests/datasets/HOGDescriptorDataset.h
blob: 73c64946eccc44dc527d5194faf5db2e1c2a12f0 (plain)
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
/*
 * Copyright (c) 2017, 2018 ARM Limited.
 *
 * SPDX-License-Identifier: MIT
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to
 * deal in the Software without restriction, including without limitation the
 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
 * sell copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */
#ifndef ARM_COMPUTE_TEST_HOG_DESCRIPTOR_DATASET
#define ARM_COMPUTE_TEST_HOG_DESCRIPTOR_DATASET

#include "utils/TypePrinter.h"

namespace arm_compute
{
namespace test
{
namespace datasets
{
class HOGDescriptorDataset
{
public:
    using type = std::tuple<std::string, HOGInfo>;

    struct iterator
    {
        iterator(std::vector<std::string>::const_iterator image_it,
                 std::vector<HOGInfo>::const_iterator     hog_info_it)
            : _image_it{ std::move(image_it) },
              _hog_info_it{ std::move(hog_info_it) }
        {
        }

        std::string description() const
        {
            std::stringstream description;
            description << "Image=" << *_image_it << ":";
            description << "HOGInfo=" << *_hog_info_it;

            return description.str();
        }

        HOGDescriptorDataset::type operator*() const
        {
            return std::make_tuple(*_image_it, *_hog_info_it);
        }

        iterator &operator++()
        {
            ++_image_it;
            ++_hog_info_it;

            return *this;
        }

    private:
        std::vector<std::string>::const_iterator _image_it;
        std::vector<HOGInfo>::const_iterator     _hog_info_it;
    };

    iterator begin() const
    {
        return iterator(_image.begin(), _hog_info.begin());
    }

    int size() const
    {
        return std::min(_image.size(), _hog_info.size());
    }

    void add_config(std::string image,
                    Size2D cell_size, Size2D block_size, Size2D detection_window_size, Size2D block_stride,
                    size_t num_bins, HOGNormType normalization_type, float l2_hyst_threshold, PhaseType phase_type)
    {
        _image.emplace_back(std::move(image));
        _hog_info.emplace_back(HOGInfo(cell_size, block_size, detection_window_size, block_stride, num_bins, normalization_type, l2_hyst_threshold, phase_type));
    }

protected:
    HOGDescriptorDataset()                        = default;
    HOGDescriptorDataset(HOGDescriptorDataset &&) = default;

private:
    std::vector<std::string> _image{};
    std::vector<HOGInfo>     _hog_info{};
};

// *INDENT-OFF*
// clang-format off
class SmallHOGDescriptorDataset final : public HOGDescriptorDataset
{
public:
    SmallHOGDescriptorDataset()
    {
        //         image          cell_size       block_size        detection_size     block_stride    bin  normalization_type       thresh phase_type
        add_config("800x600.ppm", Size2D(8U, 8U), Size2D(16U, 16U), Size2D(64U, 128U), Size2D(8U, 8U), 9U,  HOGNormType::L2HYS_NORM, 0.2f,  PhaseType::SIGNED);
        add_config("800x600.ppm", Size2D(8U, 8U), Size2D(16U, 16U), Size2D(64U, 128U), Size2D(8U, 8U), 9U,  HOGNormType::L2HYS_NORM, 0.2f,  PhaseType::UNSIGNED);
    }
};

class LargeHOGDescriptorDataset final : public HOGDescriptorDataset
{
public:
    LargeHOGDescriptorDataset()
    {
        //         image            cell_size       block_size        detection_size     block_stride    bin  normalization_type       thresh phase_type
        add_config("1920x1080.ppm", Size2D(8U, 8U), Size2D(16U, 16U), Size2D(64U, 128U), Size2D(8U, 8U), 9U,  HOGNormType::L2HYS_NORM, 0.2f,  PhaseType::SIGNED);
        add_config("1920x1080.ppm", Size2D(8U, 8U), Size2D(16U, 16U), Size2D(64U, 128U), Size2D(8U, 8U), 9U,  HOGNormType::L2_NORM,    0.2f,  PhaseType::SIGNED);
        add_config("1920x1080.ppm", Size2D(8U, 8U), Size2D(16U, 16U), Size2D(64U, 128U), Size2D(8U, 8U), 9U,  HOGNormType::L1_NORM,    0.2f,  PhaseType::SIGNED);

        add_config("1920x1080.ppm", Size2D(8U, 8U), Size2D(16U, 16U), Size2D(64U, 128U), Size2D(8U, 8U), 9U,  HOGNormType::L2HYS_NORM, 0.2f,  PhaseType::UNSIGNED);
        add_config("1920x1080.ppm", Size2D(8U, 8U), Size2D(16U, 16U), Size2D(64U, 128U), Size2D(8U, 8U), 9U,  HOGNormType::L2_NORM,    0.2f,  PhaseType::UNSIGNED);
        add_config("1920x1080.ppm", Size2D(8U, 8U), Size2D(16U, 16U), Size2D(64U, 128U), Size2D(8U, 8U), 9U,  HOGNormType::L1_NORM,    0.2f,  PhaseType::UNSIGNED);
    }
};
// clang-format on
// *INDENT-ON*

} // namespace datasets
} // namespace test
} // namespace arm_compute
#endif /* ARM_COMPUTE_TEST_HOG_DESCRIPTOR_DATASET */