Last change
on this file since 13151 was 12378, checked in by neise, 13 years ago |
moved SpikeRemoval methods into dedicated files
|
-
Property svn:executable
set to
*
|
File size:
280 bytes
|
Line | |
---|
1 | #ifndef __SPIKEREMOVAL_H
|
---|
2 | #define __SPIKEREMOVAL_H
|
---|
3 |
|
---|
4 | vector<float> * computeN1mean( vector<float> &src);
|
---|
5 |
|
---|
6 | void removeSpikes(
|
---|
7 | vector<float> &src,
|
---|
8 | vector<float> &dest,
|
---|
9 | const float CandidateTHR = -5.0,
|
---|
10 | const float nextDiffTHR = -1.6,
|
---|
11 | const float nextNextDiffTHR = -10.
|
---|
12 | );
|
---|
13 |
|
---|
14 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.