blob: 9fc34a77608f91cd0fc919548ff2f248eaef1012 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
2 * Copyright (c) 2016, 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/CL/kernels/CLHarrisCornersKernel.h"
25
26#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLKernelLibrary.h"
28#include "arm_compute/core/CL/ICLTensor.h"
29#include "arm_compute/core/CL/OpenCL.h"
30#include "arm_compute/core/Error.h"
31#include "arm_compute/core/Helpers.h"
32#include "arm_compute/core/TensorInfo.h"
33#include "arm_compute/core/Types.h"
34#include "arm_compute/core/Validate.h"
35#include "arm_compute/core/Window.h"
36
37#include <set>
38#include <sstream>
39#include <string>
40
41using namespace arm_compute;
42
43CLHarrisScoreKernel::CLHarrisScoreKernel()
44 : _input1(nullptr), _input2(nullptr), _output(nullptr), _sensitivity(), _strength_thresh(), _norm_factor(), _border_size(0)
45{
46}
47
48BorderSize CLHarrisScoreKernel::border_size() const
49{
50 return _border_size;
51}
52
53void CLHarrisScoreKernel::configure(const ICLImage *input1, const ICLImage *input2, ICLImage *output,
54 int32_t block_size, float norm_factor, float strength_thresh, float sensitivity,
55 bool border_undefined)
56{
57 ARM_COMPUTE_ERROR_ON_TENSOR_NOT_2D(input1);
58 ARM_COMPUTE_ERROR_ON_TENSOR_NOT_2D(input2);
59 ARM_COMPUTE_ERROR_ON_TENSOR_NOT_2D(output);
60 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input1, 1, DataType::S16, DataType::S32);
61 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input2, 1, DataType::S16, DataType::S32);
62 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::F32);
63 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input1, input2);
64 ARM_COMPUTE_ERROR_ON(!(block_size == 3 || block_size == 5 || block_size == 7));
65 ARM_COMPUTE_ERROR_ON(0.0f == norm_factor);
66
67 _input1 = input1;
68 _input2 = input2;
69 _output = output;
70 _sensitivity = sensitivity;
71 _strength_thresh = strength_thresh;
72 _norm_factor = norm_factor;
73 _border_size = BorderSize(block_size / 2);
74
75 // Select kernel
76 std::stringstream harris_score_kernel_name;
77 harris_score_kernel_name << "harris_score_" << block_size << "x" << block_size;
78
79 // Create build options
80 std::set<std::string> build_opts = { ("-DDATA_TYPE=" + get_cl_type_from_data_type(input1->info()->data_type())) };
81
82 // Create kernel
83 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(harris_score_kernel_name.str(), build_opts));
84
85 // Set static kernel arguments
86 unsigned int idx = 3 * num_arguments_per_2D_tensor(); //Skip the input and output parameters
87 _kernel.setArg(idx++, sensitivity);
88 _kernel.setArg(idx++, strength_thresh);
89 _kernel.setArg(idx++, norm_factor);
90
91 // Configure kernel window
92 constexpr unsigned int num_elems_processed_per_iteration = 4;
93 constexpr unsigned int num_elems_written_per_iteration = 4;
94 constexpr unsigned int num_elems_read_per_iteration = 8;
95 constexpr unsigned int num_rows_read_per_iteration = 3;
96
97 Window win = calculate_max_window(*_input1->info(), Steps(num_elems_processed_per_iteration), border_undefined, border_size());
98
99 AccessWindowRectangle input1_access(input1->info(), -border_size().left, -border_size().top, num_elems_read_per_iteration, num_rows_read_per_iteration);
100 AccessWindowRectangle input2_access(input2->info(), -border_size().left, -border_size().top, num_elems_read_per_iteration, num_rows_read_per_iteration);
101 AccessWindowHorizontal output_access(output->info(), 0, num_elems_written_per_iteration);
102
103 update_window_and_padding(win, input1_access, input2_access, output_access);
104
105 ValidRegion valid_region = intersect_valid_regions(input1->info()->valid_region(), input2->info()->valid_region());
106 output_access.set_valid_region(win, valid_region, border_undefined, border_size());
107
108 ICLKernel::configure(win);
109}
110
111void CLHarrisScoreKernel::run(const Window &window, cl::CommandQueue &queue)
112{
113 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
114 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
115
116 Window slice = window.first_slice_window_2D();
117 do
118 {
119 unsigned int idx = 0;
120 add_2D_tensor_argument(idx, _input1, slice);
121 add_2D_tensor_argument(idx, _input2, slice);
122 add_2D_tensor_argument(idx, _output, slice);
123 enqueue(queue, *this, slice);
124 }
125 while(window.slide_window_slice_2D(slice));
126}