|
CoreFlow 1.0.0
A modern orchestration and execution runtime
|
Functions | |
| VX_API_ENTRY vx_node VX_API_CALL | vxConvertDepthNode (vx_graph graph, vx_image input, vx_image output, vx_enum policy, vx_scalar shift) |
| [Graph] Creates a bit-depth conversion node. | |
| VX_API_ENTRY vx_status VX_API_CALL | vxuConvertDepth (vx_context context, vx_image input, vx_image output, vx_enum policy, vx_int32 shift) |
| [Immediate] Converts the input images bit-depth into the output image. | |
| VX_API_ENTRY vx_node VX_API_CALL vxConvertDepthNode | ( | vx_graph | graph, |
| vx_image | input, | ||
| vx_image | output, | ||
| vx_enum | policy, | ||
| vx_scalar | shift ) |
#include <vx_nodes.h>
[Graph] Creates a bit-depth conversion node.
| [in] | graph | The reference to the graph. |
| [in] | input | The input image. |
| [out] | output | The output image with the same dimensions of the input image. |
| [in] | policy | A VX_TYPE_ENUM of the vx_convert_policy_e enumeration. |
| [in] | shift | A scalar containing a VX_TYPE_INT32 of the shift value. |
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 vxuConvertDepth | ( | vx_context | context, |
| vx_image | input, | ||
| vx_image | output, | ||
| vx_enum | policy, | ||
| vx_int32 | shift ) |
#include <vxu.h>
[Immediate] Converts the input images bit-depth into the output image.
| [in] | context | The reference to the overall context. |
| [in] | input | The input image. |
| [out] | output | The output image. |
| [in] | policy | A VX_TYPE_ENUM of the vx_convert_policy_e enumeration. |
| [in] | shift | A scalar containing a VX_TYPE_INT32 of the shift value. |
vx_status_e enumeration. | VX_SUCCESS | Success |
| * | An error occurred. See vx_status_e.. |