OSDN Git Service

Some tweaks to the median filter
[android-x86/hardware-intel-libsensors.git] / filtering.h
1 #ifndef FILTERING_H
2 #define FILTERING_H
3
4 void denoise_median(struct sensor_info_t* info, struct sensors_event_t* event,
5         unsigned int num_fields);
6 void denoise_median_init(int s, unsigned int sample_size,
7         unsigned int num_fields);
8 void denoise_median_release(int s);
9 #endif