CoreFlow 1.0.0
A modern orchestration and execution runtime
|
Functions | |
VX_API_ENTRY vx_node VX_API_CALL | vxMagnitudeNode (vx_graph graph, vx_image grad_x, vx_image grad_y, vx_image mag) |
[Graph] Create a Magnitude node. | |
VX_API_ENTRY vx_status VX_API_CALL | vxuMagnitude (vx_context context, vx_image grad_x, vx_image grad_y, vx_image mag) |
[Immediate] Invokes an immediate Magnitude. | |
VX_API_ENTRY vx_node VX_API_CALL vxMagnitudeNode | ( | vx_graph | graph, |
vx_image | grad_x, | ||
vx_image | grad_y, | ||
vx_image | mag ) |
#include <vx_nodes.h>
[Graph] Create a Magnitude node.
[in] | graph | The reference to the graph. |
[in] | grad_x | The input x image. This must be in VX_DF_IMAGE_S16 format. |
[in] | grad_y | The input y image. This must be in VX_DF_IMAGE_S16 format. |
[out] | mag | The magnitude image. This is in VX_DF_IMAGE_S16 format. Must have the same dimensions as the input image. |
VX_KERNEL_MAGNITUDE
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 vxuMagnitude | ( | vx_context | context, |
vx_image | grad_x, | ||
vx_image | grad_y, | ||
vx_image | mag ) |
#include <vxu.h>
[Immediate] Invokes an immediate Magnitude.
[in] | context | The reference to the overall context. |
[in] | grad_x | The input x image. This must be in VX_DF_IMAGE_S16 format. |
[in] | grad_y | The input y image. This must be in VX_DF_IMAGE_S16 format. |
[out] | mag | The magnitude image. This will be in VX_DF_IMAGE_S16 format. |
vx_status_e
enumeration. VX_SUCCESS | Success |
* | An error occurred. See vx_status_e . |