Performs a Gaussian Blur on an image then half-scales it.
[Graph] Performs a Gaussian Blur on an image then half-scales it.
The output image size is determined by:
\[ W_{output} = \frac{W_{input} + 1}{2} \\ , H_{output} = \frac{H_{input} + 1}{2} \]
- Parameters
-
[in] | graph | The reference to the graph. |
[in] | input | The input VX_DF_IMAGE_U8 image. |
[out] | output | The output VX_DF_IMAGE_U8 image. |
[in] | kernel_size | The input size of the Gaussian filter. Supported values are 3 and 5. |
- Returns
vx_node
.
- Return values
-
vx_node | A node reference. Any possible errors preventing a successful creation should be checked using vxGetStatus |
[Immediate] Performs a Gaussian Blur on an image then half-scales it.
- Parameters
-
[in] | context | The reference to the overall context. |
[in] | input | The input VX_DF_IMAGE_U8 image. |
[out] | output | The output VX_DF_IMAGE_U8 image. |
[in] | kernel_size | The input size of the Gaussian filter. Supported values are 3 and 5. |
- Returns
- A
vx_status_e
enumeration.
- Return values
-