CoreFlow 1.0.0
A modern orchestration and execution runtime
Loading...
Searching...
No Matches
Kernel: Channel Combine

Functions

VX_API_ENTRY vx_node VX_API_CALL vxChannelCombineNode (vx_graph graph, vx_image plane0, vx_image plane1, vx_image plane2, vx_image plane3, vx_image output)
 [Graph] Creates a channel combine node.
 
VX_API_ENTRY vx_status VX_API_CALL vxuChannelCombine (vx_context context, vx_image plane0, vx_image plane1, vx_image plane2, vx_image plane3, vx_image output)
 [Immediate] Invokes an immediate Channel Combine.
 

Detailed Description

Function Documentation

◆ vxChannelCombineNode()

VX_API_ENTRY vx_node VX_API_CALL vxChannelCombineNode ( vx_graph graph,
vx_image plane0,
vx_image plane1,
vx_image plane2,
vx_image plane3,
vx_image output )

#include <vx_nodes.h>

[Graph] Creates a channel combine node.

Parameters
[in]graphThe graph reference.
[in]plane0The plane that forms channel 0. Must be VX_DF_IMAGE_U8.
[in]plane1The plane that forms channel 1. Must be VX_DF_IMAGE_U8.
[in]plane2[optional] The plane that forms channel 2. Must be VX_DF_IMAGE_U8.
[in]plane3[optional] The plane that forms channel 3. Must be VX_DF_IMAGE_U8.
[out]outputThe output image. The format of the image must be defined, even if the image is virtual. Must have the same dimensions as the input images
See also
VX_KERNEL_CHANNEL_COMBINE
Returns
vx_node.
Return values
vx_nodeA node reference. Any possible errors preventing a successful creation should be checked using vxGetStatus

◆ vxuChannelCombine()

VX_API_ENTRY vx_status VX_API_CALL vxuChannelCombine ( vx_context context,
vx_image plane0,
vx_image plane1,
vx_image plane2,
vx_image plane3,
vx_image output )

#include <vxu.h>

[Immediate] Invokes an immediate Channel Combine.

Parameters
[in]contextThe reference to the overall context.
[in]plane0The plane that forms channel 0. Must be VX_DF_IMAGE_U8.
[in]plane1The plane that forms channel 1. Must be VX_DF_IMAGE_U8.
[in]plane2[optional] The plane that forms channel 2. Must be VX_DF_IMAGE_U8.
[in]plane3[optional] The plane that forms channel 3. Must be VX_DF_IMAGE_U8.
[out]outputThe output image.
Returns
A vx_status_e enumeration.
Return values
VX_SUCCESSSuccess
*An error occurred. See vx_status_e.