aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/NEON/functions/NEGaussianPyramid.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/runtime/NEON/functions/NEGaussianPyramid.h')
-rw-r--r--arm_compute/runtime/NEON/functions/NEGaussianPyramid.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/arm_compute/runtime/NEON/functions/NEGaussianPyramid.h b/arm_compute/runtime/NEON/functions/NEGaussianPyramid.h
index 47fcd5e60f..f675d7299d 100644
--- a/arm_compute/runtime/NEON/functions/NEGaussianPyramid.h
+++ b/arm_compute/runtime/NEON/functions/NEGaussianPyramid.h
@@ -91,10 +91,10 @@ public:
void run() override;
private:
- std::vector<std::unique_ptr<NEFillBorderKernel>> _horizontal_border_handler;
- std::vector<std::unique_ptr<NEFillBorderKernel>> _vertical_border_handler;
- std::vector<std::unique_ptr<NEGaussianPyramidHorKernel>> _horizontal_reduction;
- std::vector<std::unique_ptr<NEGaussianPyramidVertKernel>> _vertical_reduction;
+ std::vector<NEFillBorderKernel> _horizontal_border_handler;
+ std::vector<NEFillBorderKernel> _vertical_border_handler;
+ std::vector<NEGaussianPyramidHorKernel> _horizontal_reduction;
+ std::vector<NEGaussianPyramidVertKernel> _vertical_reduction;
};
/** Basic function to execute gaussian pyramid with ORB scale factor. This function calls the following NEON kernels and functions:
@@ -115,8 +115,8 @@ public:
void run() override;
private:
- std::vector<std::unique_ptr<NEGaussian5x5>> _gaus5x5;
- std::vector<std::unique_ptr<NEScale>> _scale_nearest;
+ std::vector<NEGaussian5x5> _gaus5x5;
+ std::vector<NEScale> _scale_nearest;
};
-}
+} // namespace arm_compute
#endif /*__ARM_COMPUTE_NEGAUSSIANPYRAMID_H__ */