blob: ec93759869494ffc1c771ace63593f8157d347ab [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/runtime/NEON/functions/NELaplacianPyramid.h"
25
26#include "arm_compute/core/Error.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010027#include "arm_compute/core/IPyramid.h"
28#include "arm_compute/core/TensorInfo.h"
29#include "arm_compute/core/Validate.h"
30#include "arm_compute/runtime/NEON/functions/NEArithmeticSubtraction.h"
31#include "arm_compute/runtime/NEON/functions/NEDepthConvert.h"
32#include "arm_compute/runtime/NEON/functions/NEGaussian5x5.h"
33#include "arm_compute/runtime/NEON/functions/NEGaussianPyramid.h"
34#include "arm_compute/runtime/Tensor.h"
Moritz Pflanzerd0ae8b82017-06-29 14:51:57 +010035#include "support/ToolchainSupport.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010036
37using namespace arm_compute;
38
39NELaplacianPyramid::NELaplacianPyramid()
40 : _num_levels(0), _gaussian_pyr_function(), _convf(), _subf(), _gauss_pyr(), _conv_pyr(), _depth_function()
41{
42}
43
44void NELaplacianPyramid::run()
45{
46 ARM_COMPUTE_ERROR_ON_MSG(0 == _num_levels, "Unconfigured function");
47
48 // Compute Gaussian Pyramid
49 _gaussian_pyr_function.run();
50
51 for(unsigned int i = 0; i < _num_levels; ++i)
52 {
53 // Apply Gaussian filter to gaussian pyramid image
54 _convf[i].run();
55 }
56
57 for(unsigned int i = 0; i < _num_levels; ++i)
58 {
59 // Compute laplacian image
60 _subf[i].run();
61 }
62
63 _depth_function.run();
64}
65
66void NELaplacianPyramid::configure(const ITensor *input, IPyramid *pyramid, ITensor *output, BorderMode border_mode, uint8_t constant_border_value)
67{
68 ARM_COMPUTE_ERROR_ON(nullptr == pyramid);
69 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::U8);
70 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::S16);
71 ARM_COMPUTE_ERROR_ON(0 == pyramid->info()->num_levels());
72 ARM_COMPUTE_ERROR_ON(input->info()->dimension(0) != pyramid->info()->width());
73 ARM_COMPUTE_ERROR_ON(input->info()->dimension(1) != pyramid->info()->height());
74 ARM_COMPUTE_ERROR_ON(output->info()->dimension(0) != pyramid->get_pyramid_level(pyramid->info()->num_levels() - 1)->info()->dimension(0));
75 ARM_COMPUTE_ERROR_ON(output->info()->dimension(1) != pyramid->get_pyramid_level(pyramid->info()->num_levels() - 1)->info()->dimension(1));
76
77 _num_levels = pyramid->info()->num_levels();
78
79 // Create and initialize the gaussian pyramid and the convoluted pyramid
80 PyramidInfo pyramid_info;
81 pyramid_info.init(_num_levels, 0.5f, pyramid->info()->tensor_shape(), arm_compute::Format::U8);
82
83 _gauss_pyr.init(pyramid_info);
84 _conv_pyr.init(pyramid_info);
85
86 // Create Gaussian Pyramid function
87 _gaussian_pyr_function.configure(input, &_gauss_pyr, border_mode, constant_border_value);
88
Moritz Pflanzerd0ae8b82017-06-29 14:51:57 +010089 _convf = arm_compute::support::cpp14::make_unique<NEGaussian5x5[]>(_num_levels);
90 _subf = arm_compute::support::cpp14::make_unique<NEArithmeticSubtraction[]>(_num_levels);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010091
92 for(unsigned int i = 0; i < _num_levels; ++i)
93 {
94 _convf[i].configure(_gauss_pyr.get_pyramid_level(i), _conv_pyr.get_pyramid_level(i), border_mode, constant_border_value);
95 _subf[i].configure(_gauss_pyr.get_pyramid_level(i), _conv_pyr.get_pyramid_level(i), pyramid->get_pyramid_level(i), ConvertPolicy::WRAP);
96 }
97
98 _depth_function.configure(_conv_pyr.get_pyramid_level(_num_levels - 1), output, ConvertPolicy::WRAP, 0);
99
100 _gauss_pyr.allocate();
101 _conv_pyr.allocate();
102}