blob: 4d42aa53494ff1a61f3a69400a02444c9eba1228 [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/NEON/functions/NEFastCorners.h"
26#include "arm_compute/runtime/Tensor.h"
27#include "arm_compute/runtime/TensorAllocator.h"
28#include "tests/NEON/Accessor.h"
29#include "tests/NEON/ArrayAccessor.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(NEON)
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 Tensor src = create_tensor<Tensor>(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 KeyPointArray corners;
79
80 // Create and configure function
81 NEFastCorners fast_corners;
82 fast_corners.configure(&src, threshold, suppress_nonmax, &corners, border_mode, constant_border_value);
83
84 // Validate padding
85 PaddingCalculator calculator(shape.x(), 1); // elems_processed
86
87 calculator.set_border_size(bresenham_radius);
88 calculator.set_access_offset(-bresenham_radius);
89 calculator.set_accessed_elements(8); // elems_read
90
91 validate(src.info()->padding(), calculator.required_padding());
92}
93
94template <typename T>
95using NEFastCornersFixture = FastCornersValidationFixture<Tensor, Accessor, KeyPointArray, NEFastCorners, T>;
96
97FIXTURE_DATA_TEST_CASE(RunSmall, NEFastCornersFixture<uint8_t>, framework::DatasetMode::PRECOMMIT, combine(combine(combine(datasets::Small2DShapes(), framework::dataset::make("Format", Format::U8)),
98 framework::dataset::make("SuppressNonMax", { false, true })),
99 framework::dataset::make("BorderMode", BorderMode::UNDEFINED)))
100{
101 // Validate output
102 ArrayAccessor<KeyPoint> array(_target);
103 fast_validate_keypoints(array.buffer(), array.buffer() + array.num_values(), _reference.begin(), _reference.end(), tolerance, allowed_missing, allowed_mismatching);
104}
105FIXTURE_DATA_TEST_CASE(RunLarge, NEFastCornersFixture<uint8_t>, framework::DatasetMode::NIGHTLY, combine(combine(combine(datasets::Large2DShapes(), framework::dataset::make("Format", Format::U8)),
106 framework::dataset::make("SuppressNonMax", { false, true })),
107 framework::dataset::make("BorderMode", BorderMode::UNDEFINED)))
108{
109 // Validate output
110 ArrayAccessor<KeyPoint> array(_target);
111 fast_validate_keypoints(array.buffer(), array.buffer() + array.num_values(), _reference.begin(), _reference.end(), tolerance, allowed_missing, allowed_mismatching);
112}
113
114TEST_SUITE_END()
115TEST_SUITE_END()
116} // namespace validation
117} // namespace test
118} // namespace arm_compute