public class FastGaussCalculator extends Object
The implemented algorithm is described in detail in: Charalampidis, Dimitrios. "Recursive implementation of the Gaussian filter using truncated cosine functions." IEEE Transactions on Signal Processing 64.14 (2016): 3554-3565.
Modifier and Type | Class and Description |
---|---|
static class |
FastGaussCalculator.Parameters
Collects all coefficients required to carry on the filtering, see eq.
|
Constructor and Description |
---|
FastGaussCalculator(FastGaussCalculator.Parameters fc) |
Modifier and Type | Method and Description |
---|---|
double |
getValue() |
void |
initialize(double boundaryValue) |
void |
update(double tmp) |
public FastGaussCalculator(FastGaussCalculator.Parameters fc)
Copyright © 2015–2022 ImgLib2. All rights reserved.