Table of Contents

Class SharpenFilterOptions

Namespace
Aspose.Imaging.ImageFilters.FilterOptions
Assembly
Aspose.Imaging.dll

The sharpen filter options.

public class SharpenFilterOptions : GaussianBlurFilterOptions
Inheritance
SharpenFilterOptions
Inherited Members

Constructors

SharpenFilterOptions()

Initializes a new instance of the SharpenFilterOptions class.

public SharpenFilterOptions()

SharpenFilterOptions(int, double)

Initializes a new instance of the SharpenFilterOptions class.

public SharpenFilterOptions(int size, double sigma)

Parameters

size int

The size of the kernel.

sigma double

The sigma.

Properties

Kernel

Gets the kernel.

public override double[,] Kernel { get; }

Property Value

double[,]

Sigma

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

public override double Sigma { get; set; }

Property Value

double

Size

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

public override int Size { get; set; }

Property Value

int