CoreFlow 1.0.0
A modern orchestration and execution runtime
|
Functions | |
VX_API_ENTRY vx_node VX_API_CALL | vxMinNode (vx_graph graph, vx_image in1, vx_image in2, vx_image out) |
[Graph] Creates a pixel-wise minimum kernel. | |
VX_API_ENTRY vx_status VX_API_CALL | vxuMin (vx_context context, vx_image in1, vx_image in2, vx_image out) |
[Immediate] Computes pixel-wise minimum values between two images. | |
VX_API_ENTRY vx_node VX_API_CALL vxMinNode | ( | vx_graph | graph, |
vx_image | in1, | ||
vx_image | in2, | ||
vx_image | out ) |
#include <vx_nodes.h>
[Graph] Creates a pixel-wise minimum kernel.
[in] | graph | The reference to the graph where to create the node. |
[in] | in1 | The first input image. Must be of type VX_DF_IMAGE_U8 or VX_DF_IMAGE_S16 . |
[in] | in2 | The second input image. Must be of type VX_DF_IMAGE_U8 or VX_DF_IMAGE_S16 . |
[out] | out | The output image which will hold the result of min and will have the same type and dimensions of the imput images. |
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 vxuMin | ( | vx_context | context, |
vx_image | in1, | ||
vx_image | in2, | ||
vx_image | out ) |
#include <vxu.h>
[Immediate] Computes pixel-wise minimum values between two images.
[in] | context | The reference to the overall context. |
[in] | in1 | The first input image. Must be of type VX_DF_IMAGE_U8 or VX_DF_IMAGE_S16 . |
[in] | in2 | The second input image. Must be of type VX_DF_IMAGE_U8 or VX_DF_IMAGE_S16 . |
[out] | out | The output image which will hold the result of min. |
vx_status_e
enumeration. VX_SUCCESS | Success |
* | An error occurred. See vx_status_e . |