blob: 7a50253d6978f987e106047799ddb375e256f4bf [file] [log] [blame]
Abe Mbise31bbce12017-09-19 16:19:13 +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/Helpers.h"
25
26#include "Utils.h"
27#include "WarpPerspective.h"
28
29namespace arm_compute
30{
31namespace test
32{
33namespace validation
34{
35namespace reference
36{
37template <typename T>
38SimpleTensor<T> warp_perspective(const SimpleTensor<T> &src, SimpleTensor<T> &valid_mask, const float *matrix, InterpolationPolicy policy, BorderMode border_mode, uint8_t constant_border_value)
39{
40 SimpleTensor<T> dst(src.shape(), src.data_type());
41
42 // x0 = M00 * x + M01 * y + M02
43 // y0 = M10 * x + M11 * y + M12
44 // z0 = M20 * x + M21 * y + M22
45 // xn = x0 / z0
46 // yn = y0 / z0
47 const float M00 = matrix[0];
48 const float M10 = matrix[1];
49 const float M20 = matrix[2];
50 const float M01 = matrix[0 + 1 * 3];
51 const float M11 = matrix[1 + 1 * 3];
52 const float M21 = matrix[2 + 1 * 3];
53 const float M02 = matrix[0 + 2 * 3];
54 const float M12 = matrix[1 + 2 * 3];
55 const float M22 = matrix[2 + 2 * 3];
56
57 const int width = src.shape().x();
58 const int height = src.shape().y();
59
60 for(int element_idx = 0; element_idx < src.num_elements(); ++element_idx)
61 {
62 valid_mask[element_idx] = 1;
63 Coordinates id = index2coord(src.shape(), element_idx);
64 const int idx = id.x();
65 const int idy = id.y();
66 const float z0 = M20 * idx + M21 * idy + M22;
67
68 const float x0 = (M00 * idx + M01 * idy + M02);
69 const float y0 = (M10 * idx + M11 * idy + M12);
70
71 const float xn = x0 / z0;
72 const float yn = y0 / z0;
73 id.set(0, static_cast<int>(std::floor(xn)));
74 id.set(1, static_cast<int>(std::floor(yn)));
75 if((0 <= yn) && (yn < height) && (0 <= xn) && (xn < width))
76 {
77 switch(policy)
78 {
79 case InterpolationPolicy::NEAREST_NEIGHBOR:
80 dst[element_idx] = tensor_elem_at(src, id, border_mode, constant_border_value);
81 break;
82 case InterpolationPolicy::BILINEAR:
83 (valid_bilinear_policy(xn, yn, width, height, border_mode)) ? dst[element_idx] = bilinear_policy(src, id, xn, yn, border_mode, constant_border_value) : valid_mask[element_idx] = 0;
84 break;
85 case InterpolationPolicy::AREA:
86 default:
87 ARM_COMPUTE_ERROR("Interpolation not supported");
88 break;
89 }
90 }
91 else
92 {
93 if(border_mode == BorderMode::UNDEFINED)
94 {
95 valid_mask[element_idx] = 0;
96 }
97 else
98 {
99 switch(policy)
100 {
101 case InterpolationPolicy::NEAREST_NEIGHBOR:
102 if(border_mode == BorderMode::CONSTANT)
103 {
104 dst[element_idx] = constant_border_value;
105 }
106 else if(border_mode == BorderMode::REPLICATE)
107 {
108 id.set(0, std::max(0, std::min(static_cast<int>(xn), width - 1)));
109 id.set(1, std::max(0, std::min(static_cast<int>(yn), height - 1)));
110 dst[element_idx] = src[coord2index(src.shape(), id)];
111 }
112 break;
113 case InterpolationPolicy::BILINEAR:
114 dst[element_idx] = bilinear_policy(src, id, xn, yn, border_mode, constant_border_value);
115 break;
116 case InterpolationPolicy::AREA:
117 default:
118 ARM_COMPUTE_ERROR("Interpolation not supported");
119 break;
120 }
121 }
122 }
123 }
124 return dst;
125}
126
127template SimpleTensor<uint8_t> warp_perspective(const SimpleTensor<uint8_t> &src, SimpleTensor<uint8_t> &valid_mask, const float *matrix, InterpolationPolicy policy, BorderMode border_mode,
128 uint8_t constant_border_value);
129} // namespace reference
130} // namespace validation
131} // namespace test
132} // namespace arm_compute