CoreFlow 1.0.0
A modern orchestration and execution runtime
|
Functions | |
VX_API_ENTRY vx_node VX_API_CALL | vxEqualizeHistNode (vx_graph graph, vx_image input, vx_image output) |
[Graph] Creates a Histogram Equalization node. | |
VX_API_ENTRY vx_status VX_API_CALL | vxuEqualizeHist (vx_context context, vx_image input, vx_image output) |
[Immediate] Equalizes the Histogram of a grayscale image. | |
VX_API_ENTRY vx_node VX_API_CALL vxEqualizeHistNode | ( | vx_graph | graph, |
vx_image | input, | ||
vx_image | output ) |
#include <vx_nodes.h>
[Graph] Creates a Histogram Equalization node.
[in] | graph | The reference to the graph. |
[in] | input | The grayscale input image in VX_DF_IMAGE_U8 . |
[out] | output | The grayscale output image of type VX_DF_IMAGE_U8 with equalized brightness and contrast and same size 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 vxuEqualizeHist | ( | vx_context | context, |
vx_image | input, | ||
vx_image | output ) |
#include <vxu.h>
[Immediate] Equalizes the Histogram of a grayscale image.
[in] | context | The reference to the overall context. |
[in] | input | The grayscale input image in VX_DF_IMAGE_U8 |
[out] | output | The grayscale output image of type VX_DF_IMAGE_U8 with equalized brightness and contrast. |
vx_status_e
enumeration. VX_SUCCESS | Success |
* | An error occurred. See vx_status_e . |