Class GaussianDeconvolutionFilterOptions
- Namespace
- Aspose.Imaging.ImageFilters.FilterOptions
- Assembly
- Aspose.Imaging.dll
The deconvolution filter options using Gaussian bluring.
public abstract class GaussianDeconvolutionFilterOptions : DeconvolutionFilterOptions
- Inheritance
-
GaussianDeconvolutionFilterOptions
- Derived
- Inherited Members
Constructors
GaussianDeconvolutionFilterOptions()
Initializes a new instance of the GaussianDeconvolutionFilterOptions class.
protected GaussianDeconvolutionFilterOptions()
GaussianDeconvolutionFilterOptions(int, double)
Initializes a new instance of the GaussianDeconvolutionFilterOptions class.
public GaussianDeconvolutionFilterOptions(int size, double sigma)
Parameters
Properties
Radius
Gets the radius of Gausseian Aspose.Imaging.ImageFilters.Convolution.ISquareConvolutionKernel.
public int Radius { get; set; }
Property Value
Sigma
Gets the Gaussian kernel sigma (smoothing). Must be a positive non-zero value.
public double Sigma { get; set; }
Property Value
Size
Gets the Gaussian kernel size. Must be a positive non-zero odd value.
public int Size { get; set; }