GaussianDeconvolutionFilterOptions Class
Contents
[
Hide
]Summary: The deconvolution filter options using Gaussian bluring.
Module: aspose.imaging.imagefilters.filteroptions
Full Name: aspose.imaging.imagefilters.filteroptions.GaussianDeconvolutionFilterOptions
Inheritance: DeconvolutionFilterOptions
Properties
Name | Type | Access | Description |
---|---|---|---|
brightness | double | r/w | Gets or sets the brightness. recommended range 1 - 1.5 default value = 1.15 |
grayscale | bool | r/w | Gets or sets a value indicating whether this DeconvolutionFilterOptions is grayscale. Return grayscale mode or RGB mode. |
is_partial_loaded | bool | r | Gets a value indicating whether this instance is partial loaded. |
kernel_data | Complex[] | r | Gets the kernel. |
radius | int | r/w | Gets the radius of Gausseian ISquareConvolutionKernel. |
sigma | double | r/w | Gets the Gaussian kernel sigma (smoothing). Must be a positive non-zero value. |
size | int | r/w | Gets the Gaussian kernel size. Must be a positive non-zero odd value. |
snr | double | r/w | Gets or sets the SNR(signal-to-noise ratio) recommended range 0.002 - 0.009, default value = 0.007 |
Methods
Name | Description |
---|---|
create_with_complex(kernel) | Initializes a new instance of the DeconvolutionFilterOptions class. |
create_with_double(kernel) | Initializes a new instance of the DeconvolutionFilterOptions class. |
Method: create_with_complex(kernel) [static]
create_with_complex(kernel)
Initializes a new instance of the DeconvolutionFilterOptions class.
Parameters:
Parameter | Type | Description |
---|---|---|
kernel | Complex[] | The Complex[] kernel. |
Returns
Type | Description |
---|---|
DeconvolutionFilterOptions |
Method: create_with_double(kernel) [static]
create_with_double(kernel)
Initializes a new instance of the DeconvolutionFilterOptions class.
Parameters:
Parameter | Type | Description |
---|---|---|
kernel | double | The double[] kernel. |
Returns
Type | Description |
---|---|
DeconvolutionFilterOptions |