| 1 | #!/usr/bin/python -tt
|
|---|
| 2 | #
|
|---|
| 3 | # Werner Lustermann
|
|---|
| 4 | # ETH Zurich
|
|---|
| 5 | #
|
|---|
| 6 | import numpy as np
|
|---|
| 7 |
|
|---|
| 8 | import fir_filter as fir
|
|---|
| 9 |
|
|---|
| 10 | class DRSSpikes(object):
|
|---|
| 11 | """ remove spikes (single or double false readings) from DRS4 data
|
|---|
| 12 | Strategy:
|
|---|
| 13 | * filter the data, removing the signal, thus spike(s) are clearly visible
|
|---|
| 14 | * search single and double spikes
|
|---|
| 15 | * replace the spike by a value derived from the neighbors
|
|---|
| 16 |
|
|---|
| 17 | """
|
|---|
| 18 |
|
|---|
| 19 | def __init__(self, threshold=7.,
|
|---|
| 20 | single_pattern=np.array( [-0.5, 1.0, -0.5]) ,
|
|---|
| 21 | double_pattern=np.array([-1., 1., 1., -1.]),
|
|---|
| 22 | user_action=lambda candidates, singles, doubles, data, ind: None,
|
|---|
| 23 | debug = False):
|
|---|
| 24 | """ initialize spike filter
|
|---|
| 25 | template_single: template of a single slice spike
|
|---|
| 26 | template_double: template of a two slice spike
|
|---|
| 27 |
|
|---|
| 28 | """
|
|---|
| 29 |
|
|---|
| 30 | self.threshold = threshold
|
|---|
| 31 | self.single_pattern = single_pattern * threshold
|
|---|
| 32 | self.double_pattern = double_pattern * threshold
|
|---|
| 33 |
|
|---|
| 34 | self.remove_signal = fir.RemoveSignal()
|
|---|
| 35 |
|
|---|
| 36 | self.user_action = user_action
|
|---|
| 37 | self.debug = debug
|
|---|
| 38 |
|
|---|
| 39 | def __call__(self, data):
|
|---|
| 40 |
|
|---|
| 41 | self.row, self.col = data.shape
|
|---|
| 42 | indicator = self.remove_signal(data)
|
|---|
| 43 | a = indicator.flatten()
|
|---|
| 44 | singles = []
|
|---|
| 45 | doubles = []
|
|---|
| 46 |
|
|---|
| 47 | # a spike in the first or last channel is considered as a filter artefact
|
|---|
| 48 | candidates = np.where(a[1:-2] > self.threshold)
|
|---|
| 49 | # candidates = np.where(a[1:1022] > self.threshold)
|
|---|
| 50 | cc = candidates[0]
|
|---|
| 51 | #print 'cc: ', cc
|
|---|
| 52 | #: find single spikes
|
|---|
| 53 | p = self.single_pattern * np.sign( self.single_pattern )
|
|---|
| 54 | for i, can in enumerate( zip(a[cc], a[cc+1], a[cc+2]) ):
|
|---|
| 55 | #print 'can : p', can, p
|
|---|
| 56 | can = can * np.sign(self.single_pattern)
|
|---|
| 57 | if np.all(can > p):
|
|---|
| 58 | singles.append(cc[i])
|
|---|
| 59 |
|
|---|
| 60 | #: find double spikes
|
|---|
| 61 | p = self.double_pattern * np.sign( self.double_pattern )
|
|---|
| 62 | for i, can in enumerate( zip(a[cc], a[cc+1], a[cc+2], a[cc+3]) ):
|
|---|
| 63 | #print 'data: ', [data[0,cc[i]+k] for k in range(3)]
|
|---|
| 64 | #print 'can : p', can, p
|
|---|
| 65 | can = can * np.sign(self.double_pattern)
|
|---|
| 66 | if np.all(can > p):
|
|---|
| 67 | doubles.append(cc[i])
|
|---|
| 68 |
|
|---|
| 69 | if self.debug:
|
|---|
| 70 | print 'singles: ', singles
|
|---|
| 71 | print 'doubles: ', doubles
|
|---|
| 72 |
|
|---|
| 73 | self.user_action(cc, singles, doubles, data, a)
|
|---|
| 74 |
|
|---|
| 75 | data = self.remove_single_spikes(singles, data)
|
|---|
| 76 | data = self.remove_double_spikes(doubles, data)
|
|---|
| 77 | return data
|
|---|
| 78 |
|
|---|
| 79 | def remove_single_spikes(self, singles, data):
|
|---|
| 80 | data = data.flatten()
|
|---|
| 81 | for spike in singles:
|
|---|
| 82 | data[spike] = (data[spike-1] + data[spike+1]) / 2.
|
|---|
| 83 | return data.reshape(self.row, self.col)
|
|---|
| 84 |
|
|---|
| 85 | def remove_double_spikes(self, doubles, data):
|
|---|
| 86 | data = data.flatten()
|
|---|
| 87 | for spike in doubles:
|
|---|
| 88 | data[spike:spike+2] = (data[spike-1] + data[spike+2]) / 2.
|
|---|
| 89 | return data.reshape(self.row, self.col)
|
|---|
| 90 |
|
|---|
| 91 |
|
|---|
| 92 | def _test():
|
|---|
| 93 |
|
|---|
| 94 | a = np.ones((3,12)) * 3.
|
|---|
| 95 | a[0,3] = 7.
|
|---|
| 96 | a[1,7] = 14.
|
|---|
| 97 | a[1,8] = 14.
|
|---|
| 98 | a[2,4] = 50.
|
|---|
| 99 | a[2,5] = 45.
|
|---|
| 100 | a[2,8] = 20.
|
|---|
| 101 |
|
|---|
| 102 | print a
|
|---|
| 103 |
|
|---|
| 104 | SpikeRemover = DRSSpikes(3., debug=True)
|
|---|
| 105 | print 'single spike pattern ', SpikeRemover.single_pattern
|
|---|
| 106 | print 'double spike pattern ', SpikeRemover.double_pattern
|
|---|
| 107 | afilt = SpikeRemover(a)
|
|---|
| 108 | print afilt
|
|---|
| 109 |
|
|---|
| 110 | if __name__ == '__main__':
|
|---|
| 111 | """ test the class """
|
|---|
| 112 | _test()
|
|---|
| 113 |
|
|---|
| 114 |
|
|---|