CoreFlow 1.0.0
A modern orchestration and execution runtime
|
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. | |
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.
[in] | graph | The graph reference. |
[in] | plane0 | The plane that forms channel 0. Must be VX_DF_IMAGE_U8 . |
[in] | plane1 | The 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] | output | The 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 |
VX_KERNEL_CHANNEL_COMBINE
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 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.
[in] | context | The reference to the overall context. |
[in] | plane0 | The plane that forms channel 0. Must be VX_DF_IMAGE_U8 . |
[in] | plane1 | The 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] | output | The output image. |
vx_status_e
enumeration. VX_SUCCESS | Success |
* | An error occurred. See vx_status_e . |