colorchord/colorchord2/filter.h

12 lines
285 B
C
Raw Normal View History

2015-01-07 04:51:39 +01:00
#ifndef _FILTER_H
#define _FILTER_H
//Perform a two-pass filter on the data, circularly. Once right, then left.
//void FilterFoldedBinsIIRTWOPASS( float * folded, int bins, float strength );
2015-01-07 04:51:39 +01:00
void FilterFoldedBinsBlob( float * folded, int bins, float strength, int iter );
#endif