CoreFlow 1.0.0
A modern orchestration and execution runtime
Loading...
Searching...
No Matches
Kernel: Color Convert

Functions

VX_API_ENTRY vx_node VX_API_CALL vxColorConvertNode (vx_graph graph, vx_image input, vx_image output)
 [Graph] Creates a color conversion node.
 
VX_API_ENTRY vx_status VX_API_CALL vxuColorConvert (vx_context context, vx_image input, vx_image output)
 [Immediate] Invokes an immediate Color Conversion.
 

Detailed Description

Function Documentation

◆ vxColorConvertNode()

VX_API_ENTRY vx_node VX_API_CALL vxColorConvertNode ( vx_graph graph,
vx_image input,
vx_image output )

#include <vx_nodes.h>

[Graph] Creates a color conversion node.

Parameters
[in]graphThe reference to the graph.
[in]inputThe input image from which to convert.
[out]outputThe output image to which to convert, which must have the same dimensions as the input image.
See also
VX_KERNEL_COLOR_CONVERT
Returns
vx_node.
Return values
vx_nodeA node reference. Any possible errors preventing a successful creation should be checked using vxGetStatus
Examples
blur_pipeline.cpp, bubble_pop.cpp, canny.cpp, and optical_flow.cpp.

◆ vxuColorConvert()

VX_API_ENTRY vx_status VX_API_CALL vxuColorConvert ( vx_context context,
vx_image input,
vx_image output )

#include <vxu.h>

[Immediate] Invokes an immediate Color Conversion.

Parameters
[in]contextThe reference to the overall context.
[in]inputThe input image.
[out]outputThe output image.
Returns
A vx_status_e enumeration.
Return values
VX_SUCCESSSuccess
*An error occurred. See vx_status_e.