blob: b5086ef75d893b0f0ab7821f7e75a9efcaf6c0ce [file] [log] [blame]
Abe Mbise25a340f2017-12-19 13:00:58 +00001/*
2 * Copyright (c) 2017-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/core/Types.h"
25#include "arm_compute/runtime/CL/functions/CLFastCorners.h"
26#include "arm_compute/runtime/Tensor.h"
27#include "arm_compute/runtime/TensorAllocator.h"
28#include "tests/CL/CLAccessor.h"
29#include "tests/CL/CLArrayAccessor.h"
30#include "tests/PaddingCalculator.h"
31#include "tests/datasets/ShapeDatasets.h"
32#include "tests/framework/Asserts.h"
33#include "tests/framework/Macros.h"
34#include "tests/framework/datasets/Datasets.h"
35#include "tests/validation/FastValidation.h"
36#include "tests/validation/fixtures/FastCornersFixture.h"
37
38namespace arm_compute
39{
40namespace test
41{
42namespace validation
43{
44namespace
45{
46/* Radius of the Bresenham circle around the candidate point */
47const unsigned int bresenham_radius = 3;
48/* Allowed percentage of keypoints missing for target */
49const float allowed_missing = 10.f;
50/* Allowed percentage of keypoints mismatching between target and reference */
51const float allowed_mismatching = 10.f;
52/* Tolerance used to compare corner strengths */
53const AbsoluteTolerance<float> tolerance(0.5f);
54} // namespace
55
56TEST_SUITE(CL)
57TEST_SUITE(FastCorners)
58
59DATA_TEST_CASE(Configuration, framework::DatasetMode::ALL, combine(combine(combine(concat(datasets::Small2DShapes(), datasets::Large2DShapes()),
60 framework::dataset::make("Format", Format::U8)),
61 framework::dataset::make("SuppressNonMax", { false, true })),
62 framework::dataset::make("BorderMode", BorderMode::UNDEFINED)),
63 shape, format, suppress_nonmax, border_mode)
64{
65 std::mt19937 gen(library->seed());
66 std::uniform_int_distribution<uint8_t> int_dist(0, 255);
67 std::uniform_real_distribution<float> real_dist(0, 255);
68
69 const uint8_t constant_border_value = int_dist(gen);
70 const float threshold = real_dist(gen);
71
72 // Create tensors
73 CLTensor src = create_tensor<CLTensor>(shape, data_type_from_format(format));
74 src.info()->set_format(format);
75
76 ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
77
78 CLKeyPointArray corners;
79 unsigned int num_corners;
80
81 // Create and configure function
82 CLFastCorners fast_corners;
83 fast_corners.configure(&src, threshold, suppress_nonmax, &corners, &num_corners, border_mode, constant_border_value);
84
85 // Validate padding
86 PaddingCalculator calculator(shape.x(), 1); // elems_processed
87
88 calculator.set_border_size(bresenham_radius);
89 calculator.set_access_offset(-bresenham_radius);
90 calculator.set_accessed_elements(7); // elems_read
91
92 validate(src.info()->padding(), calculator.required_padding());
93}
94
95template <typename T>
96using CLFastCornersFixture = FastCornersValidationFixture<CLTensor, CLAccessor, CLKeyPointArray, CLFastCorners, T>;
97
98FIXTURE_DATA_TEST_CASE(RunSmall, CLFastCornersFixture<uint8_t>, framework::DatasetMode::PRECOMMIT, combine(combine(combine(datasets::Small2DShapes(), framework::dataset::make("Format", Format::U8)),
99 framework::dataset::make("SuppressNonMax", { false, true })),
100 framework::dataset::make("BorderMode", BorderMode::UNDEFINED)))
101{
102 // Validate output
103 CLArrayAccessor<KeyPoint> array(_target);
104 fast_validate_keypoints(array.buffer(), array.buffer() + array.num_values(), _reference.begin(), _reference.end(), tolerance, allowed_missing, allowed_mismatching);
105}
106FIXTURE_DATA_TEST_CASE(RunLarge, CLFastCornersFixture<uint8_t>, framework::DatasetMode::NIGHTLY, combine(combine(combine(datasets::Large2DShapes(), framework::dataset::make("Format", Format::U8)),
107 framework::dataset::make("SuppressNonMax", { false, true })),
108 framework::dataset::make("BorderMode", BorderMode::UNDEFINED)))
109{
110 // Validate output
111 CLArrayAccessor<KeyPoint> array(_target);
112 fast_validate_keypoints(array.buffer(), array.buffer() + array.num_values(), _reference.begin(), _reference.end(), tolerance, allowed_missing, allowed_mismatching);
113}
114
115TEST_SUITE_END()
116TEST_SUITE_END()
117} // namespace validation
118} // namespace test
119} // namespace arm_compute