blob: f8f99169aadd49d1d2a844cef24b3b6298815d9c [file] [log] [blame]
George Wort05398a92019-01-25 15:38:33 +00001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2019-2020 Arm Limited.
George Wort05398a92019-01-25 15:38:33 +00003 *
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/runtime/NEON/NEScheduler.h"
25
26#include "arm_compute/runtime/NEON/functions/NECropResize.h"
27
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010028#include "support/MemorySupport.h"
29
George Wort05398a92019-01-25 15:38:33 +000030#include <cstddef>
31
32namespace arm_compute
33{
34NECropResize::NECropResize()
Michalis Spyrou299fdd32019-05-01 13:03:59 +010035 : _output(nullptr), _num_boxes(0), _method(), _extrapolation_value(0), _crop(), _scale(), _crop_results(), _scaled_results()
George Wort05398a92019-01-25 15:38:33 +000036{
37}
38
39Status NECropResize::validate(const ITensorInfo *input, const ITensorInfo *boxes, const ITensorInfo *box_ind, const ITensorInfo *output,
40 Coordinates2D crop_size, InterpolationPolicy method, float extrapolation_value)
41{
42 ARM_COMPUTE_RETURN_ERROR_ON(crop_size.x <= 0 || crop_size.y <= 0);
43 ARM_COMPUTE_RETURN_ERROR_ON(method == InterpolationPolicy::AREA);
44 TensorInfo temp_info;
45 ARM_COMPUTE_RETURN_ON_ERROR(NECropKernel::validate(input->clone().get(), boxes->clone().get(), box_ind->clone().get(), &temp_info, boxes->tensor_shape()[1] - 1, extrapolation_value));
46 if(output->total_size() > 0)
47 {
48 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_NOT_IN(output, DataType::F32);
49 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_LAYOUT(input, output);
50 TensorShape out_shape(input->tensor_shape()[0], crop_size.x, crop_size.y, boxes->tensor_shape()[1]);
51 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(output->tensor_shape(), out_shape);
52 }
53 return Status{};
54}
55
56void NECropResize::configure(const ITensor *input, const ITensor *boxes, const ITensor *box_ind, ITensor *output, Coordinates2D crop_size,
57 InterpolationPolicy method, float extrapolation_value)
58{
59 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
60 ARM_COMPUTE_ERROR_THROW_ON(NECropResize::validate(input->info(), boxes->info(), box_ind->info(), output->info(), crop_size, method, extrapolation_value));
61
62 _num_boxes = boxes->info()->tensor_shape()[1];
63 TensorShape out_shape(input->info()->tensor_shape()[0], crop_size.x, crop_size.y);
64
65 _output = output;
66 _method = method;
67 _extrapolation_value = extrapolation_value;
68
69 // For each crop box:
70 // - A crop kernel is used to extract the initial cropped image as specified by boxes[i] from the 3D image input[box_ind[i]].
71 // - A tensor is required to hold this initial cropped image.
72 // - A scale function is used to resize the cropped image to the size specified by crop_size.
73 // - A tensor is required to hold the final scaled image before it is copied into the 4D output
74 // that will hold all final cropped and scaled 3D images.
Michalis Spyrou299fdd32019-05-01 13:03:59 +010075 _crop.reserve(_num_boxes);
76 _crop_results.reserve(_num_boxes);
77 _scaled_results.reserve(_num_boxes);
78 _scale.reserve(_num_boxes);
George Wort05398a92019-01-25 15:38:33 +000079
80 for(unsigned int i = 0; i < _num_boxes; ++i)
81 {
Michalis Spyrou299fdd32019-05-01 13:03:59 +010082 auto crop_tensor = support::cpp14::make_unique<Tensor>();
George Wort05398a92019-01-25 15:38:33 +000083 TensorInfo crop_result_info(1, DataType::F32);
84 crop_result_info.set_data_layout(DataLayout::NHWC);
Michalis Spyrou299fdd32019-05-01 13:03:59 +010085 crop_tensor->allocator()->init(crop_result_info);
George Wort05398a92019-01-25 15:38:33 +000086
Michalis Spyrou299fdd32019-05-01 13:03:59 +010087 auto scale_tensor = support::cpp14::make_unique<Tensor>();
George Wort05398a92019-01-25 15:38:33 +000088 TensorInfo scaled_result_info(out_shape, 1, DataType::F32);
89 scaled_result_info.set_data_layout(DataLayout::NHWC);
Michalis Spyrou299fdd32019-05-01 13:03:59 +010090 scale_tensor->allocator()->init(scaled_result_info);
George Wort05398a92019-01-25 15:38:33 +000091
Michalis Spyrou299fdd32019-05-01 13:03:59 +010092 auto crop_kernel = support::cpp14::make_unique<NECropKernel>();
93 auto scale_kernel = support::cpp14::make_unique<NEScale>();
94 crop_kernel->configure(input, boxes, box_ind, crop_tensor.get(), i, _extrapolation_value);
95
96 _crop.emplace_back(std::move(crop_kernel));
97 _scaled_results.emplace_back(std::move(scale_tensor));
98 _crop_results.emplace_back(std::move(crop_tensor));
99 _scale.emplace_back(std::move(scale_kernel));
George Wort05398a92019-01-25 15:38:33 +0000100 }
101}
102
103void NECropResize::run()
104{
105 ARM_COMPUTE_ERROR_ON_MSG(_output == nullptr, "Unconfigured function");
106
107 for(unsigned int i = 0; i < _num_boxes; ++i)
108 {
109 // Size of the crop box in _boxes and thus the shape of _crop_results[i]
110 // may not be known until run-time and so the kernels cannot be configured until then.
Michalis Spyrou299fdd32019-05-01 13:03:59 +0100111 _crop[i]->configure_output_shape();
112 _crop_results[i]->allocator()->allocate();
113 NEScheduler::get().schedule(_crop[i].get(), Window::DimZ);
George Wort05398a92019-01-25 15:38:33 +0000114
115 // Scale the cropped image.
Sang-Hoon Parkccd94962020-06-09 12:09:24 +0100116 _scale[i]->configure(_crop_results[i].get(), _scaled_results[i].get(), ScaleKernelInfo{ _method, BorderMode::CONSTANT, PixelValue(_extrapolation_value), SamplingPolicy::TOP_LEFT, false });
Michalis Spyrou299fdd32019-05-01 13:03:59 +0100117 _scaled_results[i]->allocator()->allocate();
118 _scale[i]->run();
George Wort05398a92019-01-25 15:38:33 +0000119
120 // Copy scaled image into output.
Michalis Spyrou299fdd32019-05-01 13:03:59 +0100121 std::copy_n(_scaled_results[i]->buffer(), _scaled_results[i]->info()->total_size(), _output->ptr_to_element(Coordinates(0, 0, 0, i)));
George Wort05398a92019-01-25 15:38:33 +0000122 }
123}
124} // namespace arm_compute