hi_gaussian_blur_config
Description
Gaussian filtering parameter.
Prototype
hi_gaussian_blur_config = {"kernel_size": hi_size,
"sigma_x": sigma_x,
"sigma_y": sigma_y,
"border_type": hi_vpc_bord_type,
"scalar_value": hi_vpc_scalar,
"reserved": [2]}
Members
Member |
Description |
|---|---|
kernel_size |
Dictionary, size of the convolution kernel. The width and height of kernel_size can only be set to 1, 3, or 5. |
sigma_x |
Int, X-sigma value of Gaussian filtering. |
sigma_y |
Int, Y-sigma value of Gaussian filtering. If sigma_y is 0, sigma_y is equal to sigma_x. |
border_type |
Int, border making type. Only the HI_BORDER_CONSTANT and HI_BORDER_REPLICATE modes are supported. |
scalar_value |
Dictionary, border making value. |
reserved[2] |
List, reserved. Do not explicitly access the reserved field in the code. |
Parent topic: Image Processing