CoreFlow 1.0.0
A modern orchestration and execution runtime
Loading...
Searching...
No Matches

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
 

Detailed Description

Enumeration Type Documentation

◆ 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.

Function Documentation

◆ vxLBPNode()

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

Parameters
[in]graphThe reference to the graph.
[in]inAn input image in vx_image. Or \( SrcImg\) in the equations. the image is of type VX_DF_IMAGE_U8
[in]formatA variation of LBP like original LBP and mLBP. see vx_lbp_format_e
[in]kernel_sizeKernel size. Only size of 3 and 5 are supported
[out]outAn 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.
Returns
vx_node.
Return values
vx_nodeA node reference. Any possible errors preventing a successful creation should be checked using vxGetStatus

◆ vxuLBP()

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

Parameters
[in]contextThe reference to the overall context.
[in]inAn input image in vx_image. Or \( SrcImg\) in the equations. the image is of type VX_DF_IMAGE_U8
[in]formatA variation of LBP like original LBP and mLBP. see vx_lbp_format_e
[in]kernel_sizeKernel size. Only size of 3 and 5 are supported
[out]outAn output image in vx_image.Or \( DstImg\) in the equations. the image is of type VX_DF_IMAGE_U8
Returns
A vx_status_e enumeration.
Return values
VX_SUCCESSSuccess
*An error occurred. See vx_status_e.