blob: 9ca30141a675127ba3379f41ead936d161a0a14d [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Michalis Spyrouebcebf12020-10-21 00:04:14 +01002 * Copyright (c) 2016-2020 Arm Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +01003 *
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 */
Michalis Spyrouf4643372019-11-29 16:17:13 +000024#ifndef ARM_COMPUTE_NELAPLACIANPYRAMID_H
25#define ARM_COMPUTE_NELAPLACIANPYRAMID_H
Anthony Barbier6ff3b192017-09-04 18:44:23 +010026
27#include "arm_compute/core/Types.h"
28#include "arm_compute/runtime/IFunction.h"
29#include "arm_compute/runtime/NEON/functions/NEArithmeticSubtraction.h"
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000030#include "arm_compute/runtime/NEON/functions/NEDepthConvertLayer.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010031#include "arm_compute/runtime/NEON/functions/NEGaussian5x5.h"
32#include "arm_compute/runtime/NEON/functions/NEGaussianPyramid.h"
33#include "arm_compute/runtime/Pyramid.h"
34
35#include <cstddef>
36#include <cstdint>
37#include <memory>
38
39namespace arm_compute
40{
41class ITensor;
42
43/** Basic function to execute laplacian pyramid. This function calls the following NEON kernels and functions:
44 *
45 * -# @ref NEGaussianPyramidHalf
46 * -# @ref NEGaussian5x5
47 * -# @ref NEArithmeticSubtraction
48 *
49 * First a Gaussian pyramid is created. Then, for each level i, the corresponding tensor I(i) is blurred with the Gaussian 5x5 filter, and then
50 * difference between the two tensors is the corresponding level L(i) of the Laplacian pyramid.
51 * L(i) = I(i) - Gaussian5x5(I(i))
52 * Level 0 has always the same first two dimensions as the input tensor.
morgolock0c862652020-11-06 08:59:45 +000053 *
54 * @deprecated This function is deprecated and is intended to be removed in 21.05 release
55 *
Anthony Barbier6ff3b192017-09-04 18:44:23 +010056*/
57class NELaplacianPyramid : public IFunction
58{
59public:
60 /** Constructor */
61 NELaplacianPyramid();
Michalis Spyrouebcebf12020-10-21 00:04:14 +010062 /** Prevent instances of this class from being copied (As this class contains pointers) */
63 NELaplacianPyramid(const NELaplacianPyramid &) = delete;
64 /** Prevent instances of this class from being copied (As this class contains pointers) */
65 NELaplacianPyramid &operator=(const NELaplacianPyramid &) = delete;
66 /** Prevent instances of this class from being moved (As this class contains non movable objects) */
67 NELaplacianPyramid(NELaplacianPyramid &&) = delete;
68 /** Prevent instances of this class from being moved (As this class contains non movable objects) */
69 NELaplacianPyramid &operator=(NELaplacianPyramid &&) = delete;
70 /** Default destructor */
71 ~NELaplacianPyramid();
Anthony Barbier6ff3b192017-09-04 18:44:23 +010072 /** Initialise the function's source, destinations and border mode.
73 *
74 * @param[in] input Source tensor. Data type supported: U8.
75 * @param[out] pyramid Destination pyramid tensors, Data type supported at each level: S16.
76 * @param[out] output The lowest resolution tensor necessary to reconstruct the input tensor from the pyramid. Data type supported: S16.
77 * The first two dimensions of this tensor must match the first two dimensions of the tensor in the last level of the pyramid, that is:
78 * out.width = in.width() / pow(2,pyramid_levels-1) and out.height = in.height() / pow(2,pyramid_levels-1)
79 * @param[in] border_mode Border mode to use.
80 * @param[in] constant_border_value (Optional) Constant value to use for borders if border_mode is set to CONSTANT.
81 *
82 */
83 void configure(const ITensor *input, IPyramid *pyramid, ITensor *output, BorderMode border_mode, uint8_t constant_border_value);
84
85 // Inherited methods overridden:
86 void run() override;
87
88private:
Michalis Spyroubcfd09a2019-05-01 13:03:59 +010089 size_t _num_levels;
90 NEGaussianPyramidHalf _gaussian_pyr_function;
91 std::vector<NEGaussian5x5> _convf;
92 std::vector<NEArithmeticSubtraction> _subf;
93 Pyramid _gauss_pyr;
94 Pyramid _conv_pyr;
95 NEDepthConvertLayer _depth_function;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010096};
97}
Michalis Spyrouf4643372019-11-29 16:17:13 +000098#endif /*ARM_COMPUTE_NELAPLACIANPYRAMID_H */