blob: 7827cd2989ad2d407719d3a5ef12d0cc4afc0971 [file] [log] [blame]
John Richardson63e50412017-10-13 20:51:42 +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 "Phase.h"
25
26namespace arm_compute
27{
28namespace test
29{
30namespace validation
31{
32namespace reference
33{
34template <typename T>
35SimpleTensor<uint8_t> phase(const SimpleTensor<T> &gx, const SimpleTensor<T> &gy, PhaseType phase_type)
36{
John Richardson9c450cc2017-11-22 12:00:41 +000037 const float PI = std::atan(1) * 4;
John Richardson63e50412017-10-13 20:51:42 +010038 SimpleTensor<uint8_t> phase(gx.shape(), DataType::U8);
39
John Richardson9c450cc2017-11-22 12:00:41 +000040 if(phase_type == PhaseType::UNSIGNED) // unsigned: map to [0-255)
John Richardson63e50412017-10-13 20:51:42 +010041 {
John Richardson9c450cc2017-11-22 12:00:41 +000042 for(int i = 0; i < gx.num_elements(); ++i)
John Richardson63e50412017-10-13 20:51:42 +010043 {
John Richardson9c450cc2017-11-22 12:00:41 +000044 float angle_deg = (std::atan2(float(gy[i]), float(gx[i])) / PI) * 180.0f;
45 phase[i] = (angle_deg < 0.0f) ? 180.f + angle_deg : angle_deg;
John Richardson63e50412017-10-13 20:51:42 +010046 }
John Richardson9c450cc2017-11-22 12:00:41 +000047 }
48 else // signed: map to [0-180) degrees
49 {
50 for(int i = 0; i < gx.num_elements(); ++i)
John Richardson63e50412017-10-13 20:51:42 +010051 {
John Richardson9c450cc2017-11-22 12:00:41 +000052 float angle_pi = std::atan2(gy[i], gx[i]) / PI;
53 angle_pi = (angle_pi < 0.0f) ? 2 + angle_pi : angle_pi;
54 phase[i] = lround(angle_pi * 128) & 0xFFu;
John Richardson63e50412017-10-13 20:51:42 +010055 }
John Richardson63e50412017-10-13 20:51:42 +010056 }
57
58 return phase;
59}
60
61template SimpleTensor<uint8_t> phase(const SimpleTensor<int16_t> &gx, const SimpleTensor<int16_t> &gy, PhaseType phase_type);
62template SimpleTensor<uint8_t> phase(const SimpleTensor<int32_t> &gx, const SimpleTensor<int32_t> &gy, PhaseType phase_type);
63} // namespace reference
64} // namespace validation
65} // namespace test
66} // namespace arm_compute