DeconvolutionFilterOptions Class
Contents
[
Hide
]Summary: Deconvolution Filter Options, abstract class
Module: aspose.imaging.imagefilters.filteroptions
Full Name: aspose.imaging.imagefilters.filteroptions.DeconvolutionFilterOptions
Inheritance: FilterOptionsBase
Constructors
| Name | Description |
|---|---|
| DeconvolutionFilterOptions(kernel) | Initializes a new instance of the DeconvolutionFilterOptions class. |
| DeconvolutionFilterOptions(kernel) | Initializes a new instance of the DeconvolutionFilterOptions class. |
Properties
| Name | Type | Access | Description |
|---|---|---|---|
| brightness | float | 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. |
| snr | float | 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. |
Constructor: DeconvolutionFilterOptions(kernel)
DeconvolutionFilterOptions(kernel)
Initializes a new instance of the DeconvolutionFilterOptions class.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| kernel | float[] | The kernel. |
Constructor: DeconvolutionFilterOptions(kernel)
DeconvolutionFilterOptions(kernel)
Initializes a new instance of the DeconvolutionFilterOptions class.
Parameters:
| Parameter | Type | Description |
|---|---|---|
| kernel | Complex[] | The kernel. |
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 | float[] | The double[] kernel. |
Returns
| Type | Description |
|---|---|
| DeconvolutionFilterOptions |