kfrlib / kfr

Fast, modern C++ DSP framework, FFT, Sample Rate Conversion, FIR/IIR/Biquad Filters (SSE, AVX, AVX-512, ARM NEON)
https://www.kfrlib.com
GNU General Public License v2.0
1.64k stars 252 forks source link

a moving median filter #118

Open mipac opened 3 years ago

mipac commented 3 years ago

Hi, A moving median filter, with a short length, would be very useful Have you planned to add that in the KFR api? Or have you an example of code to do it "the right way" to get the best of KFR optimizations? Best regards

dancazarin commented 3 years ago

Hi, There is sort function (kfr/base/sort.hpp) in KFR that can be used for this. No ready solution yet.