icub-basic-demos
|
Coefficients and poles of IIR Gaussian Derivative Filters (order 0, 1 and 2). More...
Go to the source code of this file.
Functions | |
void | calc_poles (int taps, const double scale, const complex< double > oldpoles[], complex< double > newpoles[]) |
5 tap second derivative filter with Linf norm approximation More... | |
void | calc_coeffs (int taps, const complex< double > poles[], float *coeffs) |
Compute the coefficients of the filter, given its poles. More... | |
void | calc_coeffs (int taps, const complex< double > poles[], const double s, float *coeffs) |
Compute the coefficients of the filter for scale s, given the poles at scale 2. More... | |
Variables | |
const complex< double > | d0_N3_Linf [] |
Coefficients and poles of IIR Gaussian Derivative Filters (order 0, 1 and 2).
Definition in file IIRGausDeriv.cpp.
void calc_coeffs | ( | int | taps, |
const complex< double > | poles[], | ||
const double | s, | ||
float * | coeffs | ||
) |
Compute the coefficients of the filter for scale s, given the poles at scale 2.
taps | Number of taps (3, 4, or 5) |
poles | Poles of the scale 2 filter. |
scale | Required filter scale (values between 1 and 100 are OK). |
coeffs | Computed coefficients ![]()
|
Definition at line 251 of file IIRGausDeriv.cpp.
void calc_coeffs | ( | int | taps, |
const complex< double > | poles[], | ||
float * | coeffs | ||
) |
Compute the coefficients of the filter, given its poles.
taps | Number of taps (3, 4, or 5) |
poles | Poles of the filter. |
coeffs | Computed coefficients ![]()
|
Definition at line 192 of file IIRGausDeriv.cpp.
void calc_poles | ( | int | taps, |
const double | scale, | ||
const complex< double > | oldpoles[], | ||
complex< double > | newpoles[] | ||
) |
5 tap second derivative filter with Linf norm approximation
Compute the poles of the filter for scale s, given the poles at scale 2
taps | Number of taps (3, 4, or 5) |
scale | Required filter scale (values between 1 and 100 are OK). |
oldpoles | Poles of the scale 2 filter. |
newpoles | Poles of the computed filter |
Definition at line 121 of file IIRGausDeriv.cpp.
|
extern |