spacial median filter rejecting abnormal signals.

Dependents:   medianFilterTest WIPV

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers MEDIAN_FILTER.h Source File

MEDIAN_FILTER.h

00001 #ifndef __MEDIAN_FILTER_H
00002 #define __MEDIAN_FILTER_H
00003 
00004 
00005 
00006 class MedianFilter
00007 {
00008 public:
00009     float ouput;
00010     int windowSize_;
00011     float array[];
00012     
00013     MedianFilter(int windowSize);
00014     float MedianValue(float  data);
00015     
00016 };
00017 
00018 #endif