aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/NEON/functions/NEGaussianPyramid.h
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2017-09-18 17:55:22 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:35:24 +0000
commit3021edfb5e72ef4cd91dbc754ce6ac55388ebc4e (patch)
tree4dba45b5e0ea8401c3bcbd66fc2b97d18d119dc6 /arm_compute/runtime/NEON/functions/NEGaussianPyramid.h
parentd910ffa3ae6433404649f91ac53c8fa08bd6e196 (diff)
downloadComputeLibrary-3021edfb5e72ef4cd91dbc754ce6ac55388ebc4e.tar.gz
COMPMID-417: Fix NEGaussianPyramidOrb.
Change-Id: I9e89136a926f33cc591784d4e7785618bba7b0b2 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/88116 Reviewed-by: Pablo Tello <pablo.tello@arm.com> Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com>
Diffstat (limited to 'arm_compute/runtime/NEON/functions/NEGaussianPyramid.h')
-rw-r--r--arm_compute/runtime/NEON/functions/NEGaussianPyramid.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/arm_compute/runtime/NEON/functions/NEGaussianPyramid.h b/arm_compute/runtime/NEON/functions/NEGaussianPyramid.h
index 5f0a67ea05..b4ed56a0c3 100644
--- a/arm_compute/runtime/NEON/functions/NEGaussianPyramid.h
+++ b/arm_compute/runtime/NEON/functions/NEGaussianPyramid.h
@@ -26,10 +26,10 @@
#include "arm_compute/core/IPyramid.h"
#include "arm_compute/core/NEON/kernels/NEGaussianPyramidKernel.h"
-#include "arm_compute/core/NEON/kernels/NEScaleKernel.h"
#include "arm_compute/core/Types.h"
#include "arm_compute/runtime/IFunction.h"
#include "arm_compute/runtime/NEON/functions/NEGaussian5x5.h"
+#include "arm_compute/runtime/NEON/functions/NEScale.h"
#include "arm_compute/runtime/Pyramid.h"
#include "arm_compute/runtime/Tensor.h"
@@ -114,9 +114,8 @@ public:
void run() override;
private:
- std::unique_ptr<Image[]> _offsets;
std::unique_ptr<NEGaussian5x5[]> _gaus5x5;
- std::unique_ptr<NEScaleKernel[]> _scale_nearest;
+ std::unique_ptr<NEScale[]> _scale_nearest;
};
}
#endif /*__ARM_COMPUTE_NEGAUSSIANPYRAMID_H__ */