| Parameters of Gaussian Blur | Details | 
|---|---|
| src | Input image, the image can have any number of channels, which are processed independently, but the depth should be CV_8U,CV_16U,CV_16S,CV_32ForCV_64F. | 
| dst | Output image of the same size and type as src | 
| ksize | Gaussian kernel size. ksize.widthandksize.heightcan differ but they both must be positive and odd. Or, they can be zero’s and then they are computed from sigma* . | 
| sigmaX | Gaussian kernel standard deviation in X direction. | 
| sigmaY | Gaussian kernel standard deviation in Y direction. if sigmaYis zero, it is set to be equal tosigmaX, if both sigmas are zeros, they are computed fromksize.widthandksize.height. To fully control the result regardless of possible future modifications of all this semantics, it is recommended to specify all ofksize,sigmaX, andsigmaY. | 
| borderType | Pixel extrapolation method. | 
I don't think it makes sense to put syntax and parameters specific to gaussian blur in this place as the topic is so broad that it should include many other examples