CoreFlow 1.0.0
A modern orchestration and execution runtime
|
Functions | |
VX_API_ENTRY vx_node VX_API_CALL | vxWarpAffineNode (vx_graph graph, vx_image input, vx_matrix matrix, vx_enum type, vx_image output) |
[Graph] Creates an Affine Warp Node. | |
VX_API_ENTRY vx_status VX_API_CALL | vxuWarpAffine (vx_context context, vx_image input, vx_matrix matrix, vx_enum type, vx_image output) |
[Immediate] Performs an Affine warp on an image. | |
VX_API_ENTRY vx_status VX_API_CALL vxuWarpAffine | ( | vx_context | context, |
vx_image | input, | ||
vx_matrix | matrix, | ||
vx_enum | type, | ||
vx_image | output ) |
#include <vxu.h>
[Immediate] Performs an Affine warp on an image.
[in] | context | The reference to the overall context. |
[in] | input | The input VX_DF_IMAGE_U1 or VX_DF_IMAGE_U8 image. |
[in] | matrix | The affine matrix. Must be 2x3 of type VX_TYPE_FLOAT32. |
[in] | type | The interpolation type from vx_interpolation_type_e. VX_INTERPOLATION_AREA is not supported. |
[out] | output | The output VX_DF_IMAGE_U1 or VX_DF_IMAGE_U8 image of the same format as the input image. |
vx_status_e
enumeration. VX_SUCCESS | Success |
* | An error occurred. See vx_status_e . |
VX_API_ENTRY vx_node VX_API_CALL vxWarpAffineNode | ( | vx_graph | graph, |
vx_image | input, | ||
vx_matrix | matrix, | ||
vx_enum | type, | ||
vx_image | output ) |
#include <vx_nodes.h>
[Graph] Creates an Affine Warp Node.
[in] | graph | The reference to the graph. |
[in] | input | The input VX_DF_IMAGE_U8 or VX_DF_IMAGE_U1 image. |
[in] | matrix | The affine matrix. Must be 2x3 of type VX_TYPE_FLOAT32. |
[in] | type | The interpolation type from vx_interpolation_type_e . VX_INTERPOLATION_AREA is not supported. |
[out] | output | The output VX_DF_IMAGE_U8 or VX_DF_IMAGE_U1 image with the same format as the input image. |
VX_NODE_BORDER
value VX_BORDER_UNDEFINED
and VX_BORDER_CONSTANT
are supported. vx_node
. vx_node | A node reference. Any possible errors preventing a successful creation should be checked using vxGetStatus |