-
-
Notifications
You must be signed in to change notification settings - Fork 43
Median Filter
Sambit Paul edited this page Dec 2, 2023
·
4 revisions
The parameters for this filter are as follows:
- Window Size ⇨ 7
int windowSize = 7; //can be anything less than length of signal
MedianFilter mf = new MedianFilter(windowSize);
double[] out = mf.filter(signal); //get the result after filtering
Wiki
-
Filters
- IIR Filters
- FIR Filters
- Kernel-Based Filter
- Adaptive Filters
-
Signals
-
Peak Detection
-
Transformations
-
Speech
-
Windowing