blob: 4188cb54f05fd1966f392088a55a33cca90aa331 [file] [log] [blame]
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +01001/*
2 * Copyright (c) 2017 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/CLArray.h"
26#include "arm_compute/runtime/CL/CLTensor.h"
27#include "arm_compute/runtime/CL/CLTensorAllocator.h"
28#include "arm_compute/runtime/CL/functions/CLHarrisCorners.h"
29#include "tests/CL/CLAccessor.h"
30#include "tests/CL/CLArrayAccessor.h"
31#include "tests/PaddingCalculator.h"
32#include "tests/datasets/BorderModeDataset.h"
33#include "tests/datasets/ShapeDatasets.h"
34#include "tests/framework/Asserts.h"
35#include "tests/framework/Macros.h"
36#include "tests/framework/datasets/Datasets.h"
37#include "tests/validation/Validation.h"
38#include "tests/validation/fixtures/HarrisCornersFixture.h"
39
40namespace arm_compute
41{
42namespace test
43{
44namespace validation
45{
46namespace
47{
48const auto use_fp16 = framework::dataset::make("UseFP16",
49{ false });
50
51const auto data = combine(framework::dataset::make("GradientSize", { 3, 5, 7 }), combine(framework::dataset::make("BlockSize", { 3, 5, 7 }), combine(datasets::BorderModes(), use_fp16)));
52} // namespace
53
54TEST_SUITE(CL)
55TEST_SUITE(HarrisCorners)
56
57DATA_TEST_CASE(Configuration, framework::DatasetMode::ALL, combine(combine(concat(datasets::Small2DShapes(), datasets::Large2DShapes()), data), framework::dataset::make("Format", Format::U8)), shape,
58 gradient_size, block_size, border_mode, use_fp16, format)
59{
60 ARM_COMPUTE_UNUSED(use_fp16);
61 ARM_COMPUTE_ERROR_ON(use_fp16);
62
63 std::mt19937 gen(library->seed());
64 std::uniform_real_distribution<float> real_dist(0.f, 0.01f);
65
66 const float threshold = real_dist(gen);
67 const float sensitivity = real_dist(gen);
68
69 constexpr float max_euclidean_distance = 30.f;
70 real_dist = std::uniform_real_distribution<float>(0.f, max_euclidean_distance);
71 const float min_dist = real_dist(gen);
72
73 // Generate a random constant value
74 std::uniform_int_distribution<uint8_t> int_dist(0, 255);
75 const uint8_t constant_border_value = int_dist(gen);
76
77 // Create tensors
78 CLTensor src = create_tensor<CLTensor>(shape, data_type_from_format(format));
79 src.info()->set_format(format);
80 CLKeyPointArray corners;
81
82 ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
83
84 // Create harris corners configure function
85 CLHarrisCorners harris_corners;
86 harris_corners.configure(&src, threshold, min_dist, sensitivity, gradient_size, block_size, &corners, border_mode, constant_border_value);
87
88 // Validate padding
89 PaddingCalculator calculator(shape.x(), 8);
90
91 calculator.set_border_mode(border_mode);
92 calculator.set_border_size(gradient_size / 2);
93 calculator.set_access_offset(-gradient_size / 2);
94 calculator.set_accessed_elements(16);
95
96 const PaddingSize padding = calculator.required_padding();
97
98 validate(src.info()->padding(), padding);
99}
100
101template <typename T>
102using CLHarrisCornersFixture = HarrisCornersValidationFixture<CLTensor, CLAccessor, CLKeyPointArray, CLHarrisCorners, T>;
103
104FIXTURE_DATA_TEST_CASE(RunSmall, CLHarrisCornersFixture<uint8_t>, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::Small2DShapes(), data), framework::dataset::make("Format", Format::U8)))
105{
106 // Validate output
107 CLArrayAccessor<KeyPoint> array(_target);
108 validate_keypoints(array.buffer(), array.buffer() + array.num_values(), _reference.begin(), _reference.end(), RelativeTolerance<float>(0.0001f));
109}
110
111FIXTURE_DATA_TEST_CASE(RunLarge, CLHarrisCornersFixture<uint8_t>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::Large2DShapes(), data), framework::dataset::make("Format", Format::U8)))
112{
113 // Validate output
114 CLArrayAccessor<KeyPoint> array(_target);
115 validate_keypoints(array.buffer(), array.buffer() + array.num_values(), _reference.begin(), _reference.end(), RelativeTolerance<float>(0.0001f));
116}
117
118TEST_SUITE_END()
119TEST_SUITE_END()
120} // namespace validation
121} // namespace test
122} // namespace arm_compute