Compute Library
18.05
|
Basic function to execute sobel 7x7 filter. More...
#include <CLSobel7x7.h>
Public Member Functions | |
CLSobel7x7 (std::shared_ptr< IMemoryManager > memory_manager=nullptr) | |
Default Constructor. More... | |
void | configure (ICLTensor *input, ICLTensor *output_x, ICLTensor *output_y, BorderMode border_mode, uint8_t constant_border_value=0) |
Initialise the function's source, destinations and border mode. More... | |
void | run () override |
Run the kernels contained in the function. More... | |
Public Member Functions inherited from IFunction | |
virtual | ~IFunction ()=default |
Destructor. More... | |
virtual void | prepare () |
Prepare the function for executing. More... | |
Basic function to execute sobel 7x7 filter.
This function calls the following OpenCL kernels:
Definition at line 49 of file CLSobel7x7.h.
CLSobel7x7 | ( | std::shared_ptr< IMemoryManager > | memory_manager = nullptr | ) |
Default Constructor.
[in] | memory_manager | (Optional) Memory manager. |
void configure | ( | ICLTensor * | input, |
ICLTensor * | output_x, | ||
ICLTensor * | output_y, | ||
BorderMode | border_mode, | ||
uint8_t | constant_border_value = 0 |
||
) |
Initialise the function's source, destinations and border mode.
[in,out] | input | Source tensor. Data types supported: U8. (Written to only for border_mode != UNDEFINED) |
[out] | output_x | (optional) Destination for the Sobel 7x7 convolution along the X axis. Data types supported: S32. |
[out] | output_y | (optional) Destination for the Sobel 7x7 convolution along the Y axis. Data types supported: S32. |
[in] | border_mode | Border mode to use for the convolution. |
[in] | constant_border_value | (Optional) Constant value to use for borders if border_mode is set to CONSTANT. |
|
overridevirtual |
Run the kernels contained in the function.
For NEON kernels:
For OpenCL kernels:
Implements IFunction.