CoreFlow 1.0.0
A modern orchestration and execution runtime
|
Functions | |
VX_API_ENTRY vx_node VX_API_CALL | vxBox3x3Node (vx_graph graph, vx_image input, vx_image output) |
[Graph] Creates a Box Filter Node. | |
VX_API_ENTRY vx_status VX_API_CALL | vxuBox3x3 (vx_context context, vx_image input, vx_image output) |
[Immediate] Computes a box filter on the image by a 3x3 window. | |
VX_API_ENTRY vx_node VX_API_CALL vxBox3x3Node | ( | vx_graph | graph, |
vx_image | input, | ||
vx_image | output ) |
#include <vx_nodes.h>
[Graph] Creates a Box Filter Node.
[in] | graph | The reference to the graph. |
[in] | input | The input image in VX_DF_IMAGE_U8 format. |
[out] | output | The output image in VX_DF_IMAGE_U8 format, which must have the same dimensions as the input image. |
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 vxuBox3x3 | ( | vx_context | context, |
vx_image | input, | ||
vx_image | output ) |
#include <vxu.h>
[Immediate] Computes a box filter on the image by a 3x3 window.
[in] | context | The reference to the overall context. |
[in] | input | The input image in VX_DF_IMAGE_U8 format. |
[out] | output | The output image in VX_DF_IMAGE_U8 format. |
vx_status_e
enumeration. VX_SUCCESS | Success |
* | An error occurred. See vx_status_e . |