|
CoreFlow 1.0.0
A modern orchestration and execution runtime
|
Functions | |
| VX_API_ENTRY vx_node VX_API_CALL | vxLaplacianPyramidNode (vx_graph graph, vx_image input, vx_pyramid laplacian, vx_image output) |
| [Graph] Creates a node for a Laplacian Image Pyramid. | |
| VX_API_ENTRY vx_status VX_API_CALL | vxuLaplacianPyramid (vx_context context, vx_image input, vx_pyramid laplacian, vx_image output) |
| [Immediate] Computes a Laplacian pyramid from an input image. | |
| VX_API_ENTRY vx_node VX_API_CALL vxLaplacianPyramidNode | ( | vx_graph | graph, |
| vx_image | input, | ||
| vx_pyramid | laplacian, | ||
| vx_image | output ) |
#include <vx_nodes.h>
[Graph] Creates a node for a Laplacian Image Pyramid.
| [in] | graph | The reference to the graph. |
| [in] | input | The input image in VX_DF_IMAGE_U8 or VX_DF_IMAGE_S16 format. |
| [out] | laplacian | The Laplacian pyramid with VX_DF_IMAGE_S16 to construct. |
| [out] | output | The lowest resolution image in VX_DF_IMAGE_U8 or VX_DF_IMAGE_S16 format necessary to reconstruct the input image from the pyramid. The output image format should be same as input image format. |
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 vxuLaplacianPyramid | ( | vx_context | context, |
| vx_image | input, | ||
| vx_pyramid | laplacian, | ||
| vx_image | output ) |
#include <vxu.h>
[Immediate] Computes a Laplacian pyramid from an input image.
| [in] | context | The reference to the overall context. |
| [in] | input | The input image in VX_DF_IMAGE_U8 or VX_DF_IMAGE_S16 format. |
| [out] | laplacian | The Laplacian pyramid with VX_DF_IMAGE_S16 to construct. |
| [out] | output | The lowest resolution image in VX_DF_IMAGE_U8 or VX_DF_IMAGE_S16 format necessary to reconstruct the input image from the pyramid. The output image format should be same as input image format. |
vx_status enumeration. | VX_SUCCESS | Success. |
| * | An error occured. See vx_status_e |