APM:Libraries
Filter.h
Go to the documentation of this file.
1 #pragma once
2 
3 /* Umbrella header for the Filter library */
4 
5 #include "FilterClass.h"
6 #include "AverageFilter.h"
7 #include "DerivativeFilter.h"
8 #include "FilterWithBuffer.h"
9 #include "LowPassFilter.h"
10 #include "ModeFilter.h"
11 #include "Butter.h"
A filter with a buffer. This is implemented separately to the base Filter class to get around restric...
A class to implement a low pass filter without losing precision even for int types the downside being...
A class to apply a mode filter which is basically picking the median value from the last x samples th...
A class to provide the average of a number of samples.
A pure virtual interface class.