blob: bef5962fbf06242376818917f29a423399b4196f [file] [log] [blame]
Sanghoon Leefc35b512017-10-18 12:09:04 +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 "Remap.h"
25
26#include "Utils.h"
27#include "tests/validation/Helpers.h"
28
29#include <algorithm>
30#include <array>
31
32namespace arm_compute
33{
34namespace test
35{
36namespace validation
37{
38namespace reference
39{
40template <typename T>
41SimpleTensor<T> remap(const SimpleTensor<T> &in, SimpleTensor<float> &map_x, SimpleTensor<float> &map_y, SimpleTensor<T> &valid_mask, InterpolationPolicy policy, BorderMode border_mode,
42 T constant_border_value)
43{
44 ARM_COMPUTE_ERROR_ON_MSG(border_mode == BorderMode::REPLICATE, "BorderMode not supported");
45
46 SimpleTensor<T> out(in.shape(), in.data_type());
47
48 const int width = in.shape().x();
49 const int height = in.shape().y();
50
51 for(int idx = 0; idx < out.num_elements(); idx++)
52 {
53 valid_mask[idx] = 1;
54 Coordinates src_idx;
55 src_idx.set(0, static_cast<int>(std::floor(map_x[idx])));
56 src_idx.set(1, static_cast<int>(std::floor(map_y[idx])));
57 if((0 <= map_y[idx]) && (map_y[idx] < height) && (0 <= map_x[idx]) && (map_x[idx] < width))
58 {
59 switch(policy)
60 {
61 case InterpolationPolicy::NEAREST_NEIGHBOR:
62 out[idx] = tensor_elem_at(in, src_idx, border_mode, constant_border_value);
63 break;
64 case InterpolationPolicy::BILINEAR:
65 (valid_bilinear_policy(map_x[idx], map_y[idx], width, height, border_mode)) ? out[idx] = bilinear_policy(in, src_idx, map_x[idx], map_y[idx], border_mode, constant_border_value) : valid_mask[idx] = 0;
66 break;
67 case InterpolationPolicy::AREA:
68 default:
69 ARM_COMPUTE_ERROR("Interpolation not supported");
70 break;
71 }
72 }
73 else
74 {
75 if(border_mode == BorderMode::UNDEFINED)
76 {
77 valid_mask[idx] = 0;
78 }
79 else
80 {
81 switch(policy)
82 {
83 case InterpolationPolicy::NEAREST_NEIGHBOR:
84 out[idx] = constant_border_value;
85 break;
86 case InterpolationPolicy::BILINEAR:
87 out[idx] = bilinear_policy(in, src_idx, map_x[idx], map_y[idx], border_mode, constant_border_value);
88 break;
89 case InterpolationPolicy::AREA:
90 default:
91 break;
92 }
93 }
94 }
95 }
96
97 return out;
98}
99
100template SimpleTensor<uint8_t> remap(const SimpleTensor<uint8_t> &src, SimpleTensor<float> &map_x, SimpleTensor<float> &map_y, SimpleTensor<uint8_t> &valid_mask, InterpolationPolicy policy,
101 BorderMode border_mode,
102 uint8_t constant_border_value);
103} // namespace reference
104} // namespace validation
105} // namespace test
106} // namespace arm_compute