gaussian_blur(src, kernel_size, sigma_x, sigma_y)ΒΆ
Blur the image using a gaussian filter
Inputs
| name | type | default | description |
|---|---|---|---|
| src | image | Source image | |
| kernel_size | int | 3 | Size of the kernel |
| sigma_x | float | 0.000 | Gaussian kernel standard deviation in X direction |
| sigma_y | float | 0.000 | Gaussian kernel standard deviation in Y direction |
Outputs
| name | type | default | description |
|---|---|---|---|
| dst | image | Destination image |