Image Filtering
Function
This Step can perform filtering process on the input images with different kinds of filters.
Usage Scenario
This Step is widely used for image processing, and there is no specific usage scenario.
Parameters
The following types of filters are available:
GaussianFilter
Utilize Gaussian function to process images.
| Parameter | Description |
|---|---|
Size X |
Parameter description: This parameter is used to set the width of the Gaussian kernel size. When the value is increased, the image is blurred.
|
Size Y |
Parameter description: This parameter is used to set the height of the Gaussian kernel size. When the value is increased, the image is blurred.
|
Sigma X |
Parameter description: This parameter is used to set the standard deviation of the Gaussian kernel in X direction. When the value is increased, the image is blurred.
|
Sigma Y |
Parameter description: This parameter is used to set the standard deviation of the Gaussian kernel in Y direction. When the value is increased, the image is blurred.
|
BilateralFilter
| Parameter | Description | ||
|---|---|---|---|
Diameter |
Parameter description: This parameter determines the range of filtering area. When the value is increased, more original image information will be retained, so that the image is clearer. Default value: 3 Tuning recommendation: Please set the value according to the actual situation. |
||
Standard Deviation of Color Space Filter |
Parameter description: This parameter is used to set the standard deviation of pixel values. Default value: 3 Tuning recommendation: Please set the value according to the actual situation.
|
||
Standard Deviation of Coordinate Space Filter |
Parameter description: This parameter is used to set the standard deviation of the spatial distance between pixels.
|
Boxfilter
| Parameter | Description |
|---|---|
Kernel Size |
Parameter description: This parameter is used to set the kernel size during the filtering process and its unit is pixel. When the value is increased, the image obtained is blurred.
|
ConditionalMeanFilter
| Parameter | Description |
|---|---|
Kernel Size |
Parameter description: This parameter is used to set the kernel size.
|
Threshold |
Parameter description: This parameter is used to set the threshold of the distance between pixels and its unit is pixel (px). When the distance is greater than this threshold, the pixel will be retained. When it is less than this threshold, the pixel will not be included in filtering.
|
DftFilter
Use discrete Fourier transform to process images and filter out the signals with high frequencies, noise and edges for example. This filter is capable of noise reduction and edge enhancement.
GuidedFilter
| Parameter | Description |
|---|---|
Kernel Size |
Parameter description: This parameter is used to set the kernel size. When the value is increased, the image smoothing effect is more obvious.
|
Eps |
Parameter description:This parameter is used to set the regularization parameter of the guided filter.
|