Class GaussianFilter

All Implemented Interfaces:
ProgressReporter

public class GaussianFilter extends LinearFilter
This class implements a 2D Gaussian filter by extending LinearFilter. This version uses a non-separated 2D convolution kernel.
Version:
2020/12/29
See Also:
  • Field Details

  • Constructor Details

    • GaussianFilter

      public GaussianFilter(double sigma)
      Constructor.
      Parameters:
      sigma - the width of the 2D Gaussian in x- and y-direction
    • GaussianFilter

      public GaussianFilter(double sigmaX, double sigmaY)
      Constructor.
      Parameters:
      sigmaX - the width of the 2D Gaussian in x-direction
      sigmaY - the width of the 2D Gaussian in y-direction