blob: 27dc3e058fd48c9642fae5567a41a66fae145cc1 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Georgios Pinitasda953f22019-04-02 17:27:03 +01002 * Copyright (c) 2016-2019 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 */
24#include "arm_compute/runtime/NEON/functions/NEOpticalFlow.h"
25
26#include "arm_compute/core/Error.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010027#include "arm_compute/core/ITensor.h"
28#include "arm_compute/core/NEON/kernels/NELKTrackerKernel.h"
29#include "arm_compute/core/TensorInfo.h"
30#include "arm_compute/core/Window.h"
31#include "arm_compute/runtime/NEON/NEScheduler.h"
32#include "arm_compute/runtime/NEON/functions/NEScharr3x3.h"
33#include "arm_compute/runtime/Pyramid.h"
34#include "arm_compute/runtime/Tensor.h"
35#include "arm_compute/runtime/TensorAllocator.h"
Moritz Pflanzerd0ae8b82017-06-29 14:51:57 +010036#include "support/ToolchainSupport.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010037
38using namespace arm_compute;
39
Georgios Pinitas658039b2017-09-15 16:30:50 +010040NEOpticalFlow::NEOpticalFlow(std::shared_ptr<IMemoryManager> memory_manager) // NOLINT
41 : _memory_group(std::move(memory_manager)),
42 _func_scharr(),
Moritz Pflanzerf4af76e2017-09-06 07:42:43 +010043 _kernel_tracker(),
44 _scharr_gx(),
45 _scharr_gy(),
46 _new_points(nullptr),
47 _new_points_estimates(nullptr),
48 _old_points(nullptr),
49 _new_points_internal(),
50 _old_points_internal(),
Anthony Barbier6ff3b192017-09-04 18:44:23 +010051 _num_levels(0)
52{
53}
54
55void NEOpticalFlow::configure(const Pyramid *old_pyramid, const Pyramid *new_pyramid, const IKeyPointArray *old_points, const IKeyPointArray *new_points_estimates,
56 IKeyPointArray *new_points, Termination termination, float epsilon, unsigned int num_iterations, size_t window_dimension,
57 bool use_initial_estimate, BorderMode border_mode, uint8_t constant_border_value)
58{
59 ARM_COMPUTE_ERROR_ON(nullptr == old_pyramid);
60 ARM_COMPUTE_ERROR_ON(nullptr == new_pyramid);
61 ARM_COMPUTE_ERROR_ON(nullptr == old_points);
62 ARM_COMPUTE_ERROR_ON(nullptr == new_points_estimates);
63 ARM_COMPUTE_ERROR_ON(nullptr == new_points);
64 ARM_COMPUTE_ERROR_ON(old_pyramid->info()->num_levels() != new_pyramid->info()->num_levels());
65 ARM_COMPUTE_ERROR_ON(0 == old_pyramid->info()->num_levels());
66 ARM_COMPUTE_ERROR_ON(old_pyramid->info()->width() != new_pyramid->info()->width());
67 ARM_COMPUTE_ERROR_ON(old_pyramid->info()->height() != new_pyramid->info()->height());
68 ARM_COMPUTE_ERROR_ON(use_initial_estimate && old_points->num_values() != new_points_estimates->num_values());
69
70 _num_levels = old_pyramid->info()->num_levels();
71 _old_points = old_points;
72 _new_points = new_points;
73 _new_points_estimates = new_points_estimates;
74
75 const float pyr_scale = old_pyramid->info()->scale();
76
Georgios Pinitas725b1732019-05-20 19:40:47 +010077 _func_scharr.clear();
78 _kernel_tracker.clear();
79 _scharr_gx.clear();
80 _scharr_gy.clear();
81
82 _func_scharr.resize(_num_levels);
83 _kernel_tracker.resize(_num_levels);
84 _scharr_gx.resize(_num_levels);
85 _scharr_gy.resize(_num_levels);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010086
87 _old_points_internal = LKInternalKeypointArray(old_points->num_values());
88 _new_points_internal = LKInternalKeypointArray(old_points->num_values());
89 _new_points->resize(old_points->num_values());
90
91 for(unsigned int i = 0; i < _num_levels; ++i)
92 {
93 // Get images from the ith level of old and right pyramid
94 IImage *old_ith_input = old_pyramid->get_pyramid_level(i);
95 IImage *new_ith_input = new_pyramid->get_pyramid_level(i);
96
97 // Get width and height of images
98 const unsigned int width_ith = old_ith_input->info()->dimension(0);
99 const unsigned int height_ith = new_ith_input->info()->dimension(1);
100
101 TensorInfo tensor_info(TensorShape(width_ith, height_ith), Format::S16);
102
Georgios Pinitas725b1732019-05-20 19:40:47 +0100103 _scharr_gx[i].allocator()->init(tensor_info);
104 _scharr_gy[i].allocator()->init(tensor_info);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100105
Georgios Pinitas658039b2017-09-15 16:30:50 +0100106 // Manage intermediate buffers
Georgios Pinitas725b1732019-05-20 19:40:47 +0100107 _memory_group.manage(&_scharr_gx[i]);
108 _memory_group.manage(&_scharr_gy[i]);
Georgios Pinitas658039b2017-09-15 16:30:50 +0100109
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100110 // Init Scharr kernel
Georgios Pinitas725b1732019-05-20 19:40:47 +0100111 _func_scharr[i].configure(old_ith_input, &_scharr_gx[i], &_scharr_gy[i], border_mode, constant_border_value);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100112
113 // Init Lucas-Kanade kernel
Georgios Pinitas725b1732019-05-20 19:40:47 +0100114 _kernel_tracker[i].configure(old_ith_input, new_ith_input, &_scharr_gx[i], &_scharr_gy[i],
115 old_points, new_points_estimates, new_points,
116 &_old_points_internal, &_new_points_internal,
117 termination, use_initial_estimate, epsilon, num_iterations, window_dimension,
118 i, _num_levels, pyr_scale);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100119
Georgios Pinitas725b1732019-05-20 19:40:47 +0100120 _scharr_gx[i].allocator()->allocate();
121 _scharr_gy[i].allocator()->allocate();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100122 }
123}
124
125void NEOpticalFlow::run()
126{
127 ARM_COMPUTE_ERROR_ON_MSG(_num_levels == 0, "Unconfigured function");
128
Georgios Pinitasda953f22019-04-02 17:27:03 +0100129 MemoryGroupResourceScope scope_mg(_memory_group);
Georgios Pinitas658039b2017-09-15 16:30:50 +0100130
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100131 for(unsigned int level = _num_levels; level > 0; --level)
132 {
133 // Run Scharr kernel
Georgios Pinitas725b1732019-05-20 19:40:47 +0100134 _func_scharr[level - 1].run();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100135
136 // Run Lucas-Kanade kernel
Georgios Pinitas725b1732019-05-20 19:40:47 +0100137 NEScheduler::get().schedule(&_kernel_tracker[level - 1], Window::DimX);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100138 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100139}