aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/NEON/functions/NEHOGDescriptor.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/runtime/NEON/functions/NEHOGDescriptor.h')
-rw-r--r--arm_compute/runtime/NEON/functions/NEHOGDescriptor.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/arm_compute/runtime/NEON/functions/NEHOGDescriptor.h b/arm_compute/runtime/NEON/functions/NEHOGDescriptor.h
index b7b4909060..30989568e1 100644
--- a/arm_compute/runtime/NEON/functions/NEHOGDescriptor.h
+++ b/arm_compute/runtime/NEON/functions/NEHOGDescriptor.h
@@ -26,9 +26,13 @@
#include "arm_compute/core/NEON/kernels/NEHOGDescriptorKernel.h"
#include "arm_compute/runtime/IFunction.h"
+#include "arm_compute/runtime/IMemoryManager.h"
+#include "arm_compute/runtime/MemoryGroup.h"
#include "arm_compute/runtime/NEON/functions/NEHOGGradient.h"
#include "arm_compute/runtime/Tensor.h"
+#include <memory>
+
namespace arm_compute
{
class IHOG;
@@ -43,7 +47,7 @@ class NEHOGDescriptor : public IFunction
{
public:
/** Default constructor */
- NEHOGDescriptor();
+ NEHOGDescriptor(std::shared_ptr<IMemoryManager> memory_manager = nullptr);
/** Initialise the function's source, destination, HOG data-object and border mode
*
* @param[in, out] input Input tensor. Data type supported: U8
@@ -59,6 +63,7 @@ public:
void run() override;
private:
+ MemoryGroup _memory_group;
NEHOGGradient _gradient;
NEHOGOrientationBinningKernel _orient_bin;
NEHOGBlockNormalizationKernel _block_norm;