ConvolutionFilterOptions Class
Contents
[
Hide
]Summary: The convolution filter options.
Module: aspose.imaging.imagefilters.filteroptions
Full Name: aspose.imaging.imagefilters.filteroptions.ConvolutionFilterOptions
Inheritance: FilterOptionsBase
Constructors
Name | Description |
---|---|
ConvolutionFilterOptions(kernel) | Initializes a new instance of the ConvolutionFilterOptions class with factor = 1, and bias = 0. |
ConvolutionFilterOptions(kernel, factor) | Initializes a new instance of the ConvolutionFilterOptions class with bias = 0. |
ConvolutionFilterOptions(kernel, factor, bias) | Initializes a new instance of the ConvolutionFilterOptions class. |
Properties
Name | Type | Access | Description |
---|---|---|---|
bias | int | r/w | Gets or sets the bias. |
factor | double | r/w | Gets or sets the factor. |
kernel_data | double | r | Gets the kernel. |
Constructor: ConvolutionFilterOptions(kernel)
ConvolutionFilterOptions(kernel)
Initializes a new instance of the ConvolutionFilterOptions class with factor = 1, and bias = 0.
Parameters:
Parameter | Type | Description |
---|---|---|
kernel | double | The convolution kernel for X-axis direction. |
Constructor: ConvolutionFilterOptions(kernel, factor)
ConvolutionFilterOptions(kernel, factor)
Initializes a new instance of the ConvolutionFilterOptions class with bias = 0.
Parameters:
Parameter | Type | Description |
---|---|---|
kernel | double | The convolution kernel for X-axis direction. |
factor | double | The factor. |
Constructor: ConvolutionFilterOptions(kernel, factor, bias)
ConvolutionFilterOptions(kernel, factor, bias)
Initializes a new instance of the ConvolutionFilterOptions class.
Parameters:
Parameter | Type | Description |
---|---|---|
kernel | double | The convolution kernel for X-axis direction. |
factor | double | The factor. |
bias | int | The bias value. |