blob: 6c2c18c3eab275a2ebc301e06d6cf8786cf7c4c5 [file] [log] [blame]
John Richardson684cb0f2018-01-09 11:17:00 +00001/*
2 * Copyright (c) 2018 ARM Limited.
3 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
24#include "arm_compute/runtime/CL/CLArray.h"
25#include "arm_compute/runtime/CL/functions/CLHOGDescriptor.h"
26#include "arm_compute/runtime/CL/functions/CLHOGDetector.h"
27#include "tests/CL/CLAccessor.h"
28#include "tests/CL/CLArrayAccessor.h"
29#include "tests/CL/CLHOGAccessor.h"
30#include "tests/datasets/HOGDescriptorDataset.h"
31#include "tests/framework/Asserts.h"
32#include "tests/framework/Macros.h"
33#include "tests/framework/datasets/Datasets.h"
34#include "tests/validation/Validation.h"
35#include "tests/validation/fixtures/HOGDetectorFixture.h"
36
37namespace arm_compute
38{
39namespace test
40{
41namespace validation
42{
43namespace
44{
45/* Set the tolerance (percentage) used when validating the score of detection window. */
46RelativeTolerance<float> tolerance(0.01f);
47
48/* Input dataset (values must be a multiple of the HOGInfo block_size) */
49const auto DetectionWindowStrideDataset = framework::dataset::make("DetectionWindowStride", { Size2D(8, 8), Size2D(16, 16) });
50} // namespace
51
52TEST_SUITE(CL)
53TEST_SUITE(HOGDetector)
54
55// *INDENT-OFF*
56// clang-format off
57using CLHOGDetectorFixture = HOGDetectorValidationFixture<CLTensor,
58 CLHOG,
59 CLDetectionWindowArray,
60 CLHOGDescriptor,
61 CLAccessor,
62 CLArrayAccessor<DetectionWindow>,
63 CLHOGAccessor,
64 CLHOGDetector,
65 uint8_t,
66 float>;
67
John Richardson6b069532018-04-27 12:55:37 +010068FIXTURE_DATA_TEST_CASE(RunSmall, CLHOGDetectorFixture, framework::DatasetMode::PRECOMMIT,
69 combine(combine(combine(
70 DetectionWindowStrideDataset,
71 datasets::SmallHOGDescriptorDataset()),
72 framework::dataset::make("Format", Format::U8)),
73 framework::dataset::make("BorderMode", {BorderMode::CONSTANT, BorderMode::REPLICATE})))
John Richardson684cb0f2018-01-09 11:17:00 +000074
75{
76 // Validate output
77 validate_detection_windows(_target.begin(), _target.end(), _reference.begin(), _reference.end(), tolerance);
78}
79
John Richardson6b069532018-04-27 12:55:37 +010080FIXTURE_DATA_TEST_CASE(RunLarge, CLHOGDetectorFixture, framework::DatasetMode::NIGHTLY,
81 combine(combine(combine(
82 DetectionWindowStrideDataset,
83 datasets::LargeHOGDescriptorDataset()),
84 framework::dataset::make("Format", Format::U8)),
85 framework::dataset::make("BorderMode", {BorderMode::CONSTANT, BorderMode::REPLICATE})))
John Richardson684cb0f2018-01-09 11:17:00 +000086{
87 // Validate output
88 validate_detection_windows(_target.begin(), _target.end(), _reference.begin(), _reference.end(), tolerance);
89}
90
91// clang-format on
92// *INDENT-ON*
93
94TEST_SUITE_END()
95TEST_SUITE_END()
96} // namespace validation
97} // namespace test
98} // namespace arm_compute