16#include "../Math/Vector3D.h"
27template <
size_t memory>
Implements a running average filter for smoothing data.
Implements a generic Kalman Filter for 1D data.
Represents a 3D vector (X, Y, Z) and provides methods for vector arithmetic.
Applies running average filtering independently to each component of a 3D vector.
Vector3D Filter(Vector3D input)
Filters a 3D vector input using the running average filter.
RunningAverageFilter< memory > X
Running average filter for the X component of the vector.
RunningAverageFilter< memory > Y
Running average filter for the Y component of the vector.
VectorRunningAverageFilter()
Default constructor for VectorRunningAverageFilter.
RunningAverageFilter< memory > Z
Running average filter for the Z component of the vector.