-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Description
I am trying to put the filtering or PSD calculation in the middle of SigVisualizer.
In the paintwidget.py, where is the best place to put the some code lines using scipy.signal and mne.filter?
from scipy.signal import lfilter, lfilter_zi
from mne.filter import create_filter
window = 10
n_samples = int(self.sfreq * window)
#self.sfreq=params['metadata']['srate']
#n_chans=params['metadata']['ch_count']
self.data_f = np.zeros((n_samples, self.n_chans))
self.data = np.zeros((n_samples, self.n_chans))
self.af = [1.0]
self.bf = create_filter(self.data_f.T, self.sfreq, 3, 40.,
method='fir')
Metadata
Metadata
Assignees
Labels
No labels