blob: 5d1fbe3a22e6e47fb6347ee857daf4c2e55522d2 [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#ifndef __ARM_COMPUTE_NEOPTICALFLOW_H__
25#define __ARM_COMPUTE_NEOPTICALFLOW_H__
26
27#include "arm_compute/core/IArray.h"
28#include "arm_compute/core/NEON/kernels/NELKTrackerKernel.h"
29#include "arm_compute/core/Types.h"
30#include "arm_compute/runtime/Array.h"
31#include "arm_compute/runtime/IFunction.h"
Georgios Pinitas658039b2017-09-15 16:30:50 +010032#include "arm_compute/runtime/IMemoryManager.h"
33#include "arm_compute/runtime/MemoryGroup.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010034#include "arm_compute/runtime/NEON/functions/NEScharr3x3.h"
35#include "arm_compute/runtime/Tensor.h"
36
37#include <cstddef>
38#include <cstdint>
39#include <memory>
40
41namespace arm_compute
42{
43class Pyramid;
44
45using LKInternalKeypointArray = Array<NELKInternalKeypoint>;
46/** Basic function to execute optical flow. This function calls the following NEON kernels and functions:
47 *
48 * -# @ref NEScharr3x3
49 * -# @ref NELKTrackerKernel
50 *
51 */
52class NEOpticalFlow : public IFunction
53{
54public:
55 /** Constructor */
Georgios Pinitas658039b2017-09-15 16:30:50 +010056 NEOpticalFlow(std::shared_ptr<IMemoryManager> memory_manager = nullptr);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010057 /** Prevent instances of this class from being copied (As this class contains pointers) */
58 NEOpticalFlow(const NEOpticalFlow &) = delete;
59 /** Prevent instances of this class from being copied (As this class contains pointers) */
60 NEOpticalFlow &operator=(const NEOpticalFlow &) = delete;
61 /** Initialise the function input and output
62 *
63 * @param[in] old_pyramid Pointer to the pyramid for the old tensor. Data type supported U8
64 * @param[in] new_pyramid Pointer to the pyramid for the new tensor. Data type supported U8
65 * @param[in] old_points Pointer to the IKeyPointArray storing old key points
66 * @param[in] new_points_estimates Pointer to the IKeyPointArray storing new estimates key points
67 * @param[out] new_points Pointer to the IKeyPointArray storing new key points
68 * @param[in] termination The criteria to terminate the search of each keypoint.
69 * @param[in] epsilon The error for terminating the algorithm
70 * @param[in] num_iterations The maximum number of iterations before terminate the alogrithm
71 * @param[in] window_dimension The size of the window on which to perform the algorithm
72 * @param[in] use_initial_estimate The flag to indicate whether the initial estimated position should be used
73 * @param[in] border_mode The border mode applied at scharr kernel stage
74 * @param[in] constant_border_value (Optional) Constant value to use for borders if border_mode is set to CONSTANT
75 *
76 */
77 void configure(const Pyramid *old_pyramid, const Pyramid *new_pyramid, const IKeyPointArray *old_points, const IKeyPointArray *new_points_estimates,
78 IKeyPointArray *new_points, Termination termination, float epsilon, unsigned int num_iterations, size_t window_dimension,
79 bool use_initial_estimate, BorderMode border_mode, uint8_t constant_border_value = 0);
80
81 // Inherited methods overridden:
82 void run() override;
83
84private:
Georgios Pinitas658039b2017-09-15 16:30:50 +010085 MemoryGroup _memory_group;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010086 std::unique_ptr<NEScharr3x3[]> _func_scharr;
87 std::unique_ptr<NELKTrackerKernel[]> _kernel_tracker;
88 std::unique_ptr<Tensor[]> _scharr_gx;
89 std::unique_ptr<Tensor[]> _scharr_gy;
90 IKeyPointArray *_new_points;
91 const IKeyPointArray *_new_points_estimates;
92 const IKeyPointArray *_old_points;
93 LKInternalKeypointArray _new_points_internal;
94 LKInternalKeypointArray _old_points_internal;
95 unsigned int _num_levels;
96};
97}
98#endif /*__ARM_COMPUTE_NEOPTICALFLOW_H__ */