SmoothImageByGaussianKernel Method of the ImageProcessingTools Object
This method smoothes an image by Gaussian kernel. Gaussian blur is used to reduce image noise and reduce details however preserving edges and boundaries.
Important! This method can be used for gray and color images only.
Syntax
Visual Basic .NET
Function SmoothImageByGaussianKernel( _ Image As Image, _ Sigma As Double, _ ) As Image
C++
HRESULT SmoothImageByGaussianKernel(
IImage* Image,
double Sigma,
IImage** Result
);
Parameters
- Image
- [in] This variable refers to the Image object which is to be preprocessed.
- Sigma
- [in] This variable specifies the standard deviation of Gaussian Distribution_
- Result
- [out, retval] A pointer to the IImage* pointer variable that provides access to the resulting image.
Return values
This method has no specific return values. It returns the standard return values of ABBYY FlexiCapture SDK functions.
See also
15.08.2023 13:19:30