blob: dbe77dde9cad20a568a2d75c88bf0577a9d9684f [file] [log] [blame]
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2018 Arm Limited.
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +01003 *
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#ifndef ARM_COMPUTE_TEST_HARRIS_CORNERS_FIXTURE
25#define ARM_COMPUTE_TEST_HARRIS_CORNERS_FIXTURE
26
27#include "arm_compute/core/TensorShape.h"
28#include "arm_compute/core/Types.h"
29#include "tests/AssetsLibrary.h"
30#include "tests/Globals.h"
31#include "tests/framework/Asserts.h"
32#include "tests/framework/Fixture.h"
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +010033#include "tests/validation/Helpers.h"
Georgios Pinitas5a7e7762017-12-01 16:27:29 +000034#include "tests/validation/reference/HarrisCornerDetector.h"
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +010035
36namespace arm_compute
37{
38class CLHarrisCorners;
39class NEHarrisCorners;
40
41namespace test
42{
43namespace validation
44{
45template <typename TensorType, typename AccessorType, typename ArrayType, typename FunctionType, typename T>
46class HarrisCornersValidationFixture : public framework::Fixture
47{
48public:
49 template <typename...>
Georgios Pinitas09d34512018-08-30 16:02:11 +010050 void setup(std::string image, int gradient_size, int block_size, BorderMode border_mode, Format format)
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +010051 {
52 HarrisCornersParameters params = harris_corners_parameters();
53
Georgios Pinitas09d34512018-08-30 16:02:11 +010054 _target = compute_target(image, gradient_size, block_size, border_mode, format, params);
Alex Gilday345ab182018-01-09 11:40:19 +000055 _reference = compute_reference(image, gradient_size, block_size, border_mode, format, params);
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +010056 }
57
58protected:
59 template <typename U>
Alex Gilday345ab182018-01-09 11:40:19 +000060 void fill(U &&tensor, RawTensor raw)
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +010061 {
Alex Gilday345ab182018-01-09 11:40:19 +000062 library->fill(tensor, raw);
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +010063 }
64
Georgios Pinitas09d34512018-08-30 16:02:11 +010065 ArrayType compute_target(std::string image, int gradient_size, int block_size, BorderMode border_mode, Format format, const HarrisCornersParameters &params)
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +010066 {
Alex Gilday345ab182018-01-09 11:40:19 +000067 // Load the image (cached by the library if loaded before)
68 const RawTensor &raw = library->get(image, format);
69
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +010070 // Create tensors
Alex Gilday345ab182018-01-09 11:40:19 +000071 TensorType src = create_tensor<TensorType>(raw.shape(), format);
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +010072
73 // Create array of keypoints
Alex Gilday345ab182018-01-09 11:40:19 +000074 ArrayType corners(raw.shape().total_size());
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +010075
76 // Create harris corners configure function
77 FunctionType harris_corners;
Georgios Pinitas09d34512018-08-30 16:02:11 +010078 harris_corners.configure(&src, params.threshold, params.min_dist, params.sensitivity, gradient_size, block_size, &corners, border_mode, params.constant_border_value);
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +010079
80 ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
81
82 // Allocate tensors
83 src.allocator()->allocate();
84
85 ARM_COMPUTE_EXPECT(!src.info()->is_resizable(), framework::LogLevel::ERRORS);
86
87 // Fill tensors
Alex Gilday345ab182018-01-09 11:40:19 +000088 fill(AccessorType(src), raw);
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +010089
90 // Compute function
91 harris_corners.run();
92
93 return corners;
94 }
95
Alex Gilday345ab182018-01-09 11:40:19 +000096 std::vector<KeyPoint> compute_reference(std::string image, int gradient_size, int block_size, BorderMode border_mode, Format format, const HarrisCornersParameters &params)
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +010097 {
Alex Gilday345ab182018-01-09 11:40:19 +000098 // Load the image (cached by the library if loaded before)
99 const RawTensor &raw = library->get(image, format);
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +0100100 // Create reference
Alex Gilday345ab182018-01-09 11:40:19 +0000101 SimpleTensor<T> src{ raw.shape(), format };
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +0100102
103 // Fill reference
Alex Gilday345ab182018-01-09 11:40:19 +0000104 fill(src, raw);
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +0100105
106 return reference::harris_corner_detector<T>(src, params.threshold, params.min_dist, params.sensitivity, gradient_size, block_size, border_mode, params.constant_border_value);
107 }
108
109 ArrayType _target{};
110 std::vector<KeyPoint> _reference{};
111};
112} // namespace validation
113} // namespace test
114} // namespace arm_compute
115#endif /* ARM_COMPUTE_TEST_HARRIS_CORNERS_FIXTURE */