aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/runtime/CL/functions/CLFastCorners.h
diff options
context:
space:
mode:
authorAbe Mbise <abe.mbise@arm.com>2017-12-19 13:00:58 +0000
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:46:07 +0000
commit25a340f84cdecb2c15fde251e59cc1af48648031 (patch)
treefc64ba0ed6d814bd91bd88124ba52596dc99d8e1 /arm_compute/runtime/CL/functions/CLFastCorners.h
parent40df1e9b770393a77afc2ebb94ff7e8f6f8696ed (diff)
downloadComputeLibrary-25a340f84cdecb2c15fde251e59cc1af48648031.tar.gz
COMPMID-578: Implement FAST corners for CL/NEON
Change-Id: Ifa74e2bf05546de9a49aa185e22fba50438d8ad6 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/113946 Tested-by: Jenkins <bsgcomp@arm.com> Reviewed-by: Pablo Tello <pablo.tello@arm.com>
Diffstat (limited to 'arm_compute/runtime/CL/functions/CLFastCorners.h')
-rw-r--r--arm_compute/runtime/CL/functions/CLFastCorners.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/arm_compute/runtime/CL/functions/CLFastCorners.h b/arm_compute/runtime/CL/functions/CLFastCorners.h
index 9afec71bc3..404b561e48 100644
--- a/arm_compute/runtime/CL/functions/CLFastCorners.h
+++ b/arm_compute/runtime/CL/functions/CLFastCorners.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2016, 2017 ARM Limited.
+ * Copyright (c) 2016-2018 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -69,7 +69,7 @@ public:
* @param[in] border_mode Strategy to use for borders.
* @param[in] constant_border_value (Optional) Constant value to use for borders if border_mode is set to CONSTANT.
*/
- void configure(const ICLImage *input, float threshold, bool nonmax_suppression, CLKeyPointArray *corners, unsigned int *num_corners,
+ void configure(const ICLImage *input, float threshold, bool nonmax_suppression, ICLKeyPointArray *corners, unsigned int *num_corners,
BorderMode border_mode, uint8_t constant_border_value = 0);
// Inherited methods overridden:
void run() override;
@@ -85,7 +85,7 @@ private:
bool _non_max;
unsigned int *_num_corners;
cl::Buffer _num_buffer;
- CLKeyPointArray *_corners;
+ ICLKeyPointArray *_corners;
uint8_t _constant_border_value;
};
}