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
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
Size
Gets the Gaussian kernel size. Must be a positive non-zero odd value.
public override int Size { get; set; }