Table of Contents

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

size int

The Gaussian kernel size.

sigma double

The Gaussian kernel sigma.

Properties

Radius

Gets the radius of Gausseian Aspose.Imaging.ImageFilters.Convolution.ISquareConvolutionKernel.

public int Radius { get; set; }

Property Value

int

Sigma

Gets the Gaussian kernel sigma (smoothing). Must be a positive non-zero value.

public double Sigma { get; set; }

Property Value

double

Size

Gets the Gaussian kernel size. Must be a positive non-zero odd value.

public int Size { get; set; }

Property Value

int