blob: a9f985a4229ab22871c5a56f1b71e4a854e9aa11 [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_NEOPTICALFLOW_H
25#define ARM_COMPUTE_NEOPTICALFLOW_H
Anthony Barbier6ff3b192017-09-04 18:44:23 +010026
27#include "arm_compute/core/IArray.h"
Michalis Spyrouebcebf12020-10-21 00:04:14 +010028#include "arm_compute/core/Types.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010029#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;
Michalis Spyrouebcebf12020-10-21 00:04:14 +010044class NELKTrackerKernel;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010045
Alex Gildayc357c472018-03-21 13:54:09 +000046/** Array of LK Internel Keypoints */
Anthony Barbier6ff3b192017-09-04 18:44:23 +010047using LKInternalKeypointArray = Array<NELKInternalKeypoint>;
48/** Basic function to execute optical flow. This function calls the following NEON kernels and functions:
49 *
50 * -# @ref NEScharr3x3
51 * -# @ref NELKTrackerKernel
52 *
53 */
54class NEOpticalFlow : public IFunction
55{
56public:
Alex Gildayc357c472018-03-21 13:54:09 +000057 /** Constructor
58 *
59 * @param[in] memory_manager (Optional) Memory manager.
60 */
Georgios Pinitas658039b2017-09-15 16:30:50 +010061 NEOpticalFlow(std::shared_ptr<IMemoryManager> memory_manager = nullptr);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010062 /** Prevent instances of this class from being copied (As this class contains pointers) */
63 NEOpticalFlow(const NEOpticalFlow &) = delete;
64 /** Prevent instances of this class from being copied (As this class contains pointers) */
65 NEOpticalFlow &operator=(const NEOpticalFlow &) = delete;
Michalis Spyrouebcebf12020-10-21 00:04:14 +010066 /** Default destructor */
67 ~NEOpticalFlow();
Anthony Barbier6ff3b192017-09-04 18:44:23 +010068 /** Initialise the function input and output
69 *
70 * @param[in] old_pyramid Pointer to the pyramid for the old tensor. Data type supported U8
71 * @param[in] new_pyramid Pointer to the pyramid for the new tensor. Data type supported U8
72 * @param[in] old_points Pointer to the IKeyPointArray storing old key points
73 * @param[in] new_points_estimates Pointer to the IKeyPointArray storing new estimates key points
74 * @param[out] new_points Pointer to the IKeyPointArray storing new key points
75 * @param[in] termination The criteria to terminate the search of each keypoint.
76 * @param[in] epsilon The error for terminating the algorithm
77 * @param[in] num_iterations The maximum number of iterations before terminate the alogrithm
78 * @param[in] window_dimension The size of the window on which to perform the algorithm
79 * @param[in] use_initial_estimate The flag to indicate whether the initial estimated position should be used
80 * @param[in] border_mode The border mode applied at scharr kernel stage
81 * @param[in] constant_border_value (Optional) Constant value to use for borders if border_mode is set to CONSTANT
82 *
83 */
84 void configure(const Pyramid *old_pyramid, const Pyramid *new_pyramid, const IKeyPointArray *old_points, const IKeyPointArray *new_points_estimates,
85 IKeyPointArray *new_points, Termination termination, float epsilon, unsigned int num_iterations, size_t window_dimension,
86 bool use_initial_estimate, BorderMode border_mode, uint8_t constant_border_value = 0);
87
88 // Inherited methods overridden:
89 void run() override;
90
91private:
Michalis Spyrouebcebf12020-10-21 00:04:14 +010092 MemoryGroup _memory_group;
93 std::vector<NEScharr3x3> _func_scharr;
94 std::vector<std::unique_ptr<NELKTrackerKernel>> _kernel_tracker;
95 std::vector<Tensor> _scharr_gx;
96 std::vector<Tensor> _scharr_gy;
97 IKeyPointArray *_new_points;
98 const IKeyPointArray *_new_points_estimates;
99 const IKeyPointArray *_old_points;
100 LKInternalKeypointArray _new_points_internal;
101 LKInternalKeypointArray _old_points_internal;
102 unsigned int _num_levels;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100103};
Georgios Pinitas725b1732019-05-20 19:40:47 +0100104} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000105#endif /*ARM_COMPUTE_NEOPTICALFLOW_H */