|
CoreFlow 1.0.0
A modern orchestration and execution runtime
|
Enumerations | |
| enum | vx_lbp_format_e { VX_LBP = VX_ENUM_BASE( VX_ID_KHRONOS, VX_ENUM_LBP_FORMAT ) + 0x0 , VX_MLBP = VX_ENUM_BASE( VX_ID_KHRONOS, VX_ENUM_LBP_FORMAT ) + 0x1 , VX_ULBP = VX_ENUM_BASE( VX_ID_KHRONOS, VX_ENUM_LBP_FORMAT ) + 0x2 } |
| Local binary pattern supported. More... | |
Functions | |
| VX_API_ENTRY vx_node VX_API_CALL | vxLBPNode (vx_graph graph, vx_image in, vx_enum format, vx_int8 kernel_size, vx_image out) |
| [Graph] Creates a node that extracts LBP image from an input image | |
| VX_API_ENTRY vx_status VX_API_CALL | vxuLBP (vx_context context, vx_image in, vx_enum format, vx_int8 kernel_size, vx_image out) |
| [Immediate] The function extracts LBP image from an input image | |
| enum vx_lbp_format_e |
#include <vx_types.h>
Local binary pattern supported.
| Enumerator | |
|---|---|
| VX_LBP | local binary pattern |
| VX_MLBP | Modified Local Binary Patterns. |
| VX_ULBP | Uniform local binary pattern. |
| VX_API_ENTRY vx_node VX_API_CALL vxLBPNode | ( | vx_graph | graph, |
| vx_image | in, | ||
| vx_enum | format, | ||
| vx_int8 | kernel_size, | ||
| vx_image | out ) |
#include <vx_nodes.h>
[Graph] Creates a node that extracts LBP image from an input image
| [in] | graph | The reference to the graph. |
| [in] | in | An input image in vx_image. Or \( SrcImg\) in the equations. the image is of type VX_DF_IMAGE_U8 |
| [in] | format | A variation of LBP like original LBP and mLBP. see vx_lbp_format_e |
| [in] | kernel_size | Kernel size. Only size of 3 and 5 are supported |
| [out] | out | An output image in vx_image.Or \( DstImg\) in the equations. the image is of type VX_DF_IMAGE_U8 with the same dimensions as the input image. |
vx_node. | vx_node | A node reference. Any possible errors preventing a successful creation should be checked using vxGetStatus |
| VX_API_ENTRY vx_status VX_API_CALL vxuLBP | ( | vx_context | context, |
| vx_image | in, | ||
| vx_enum | format, | ||
| vx_int8 | kernel_size, | ||
| vx_image | out ) |
#include <vxu.h>
[Immediate] The function extracts LBP image from an input image
| [in] | context | The reference to the overall context. |
| [in] | in | An input image in vx_image. Or \( SrcImg\) in the equations. the image is of type VX_DF_IMAGE_U8 |
| [in] | format | A variation of LBP like original LBP and mLBP. see vx_lbp_format_e |
| [in] | kernel_size | Kernel size. Only size of 3 and 5 are supported |
| [out] | out | An output image in vx_image.Or \( DstImg\) in the equations. the image is of type VX_DF_IMAGE_U8 |
vx_status_e enumeration. | VX_SUCCESS | Success |
| * | An error occurred. See vx_status_e. |