我正在尝试使用python过滤嘈杂的心率信号。因为心率永远不应该超过每分钟220次跳动,所以我想过滤掉所有220 bpm以上的噪音。我将220 /分钟转换为3.66666666赫兹,然后将该赫兹转换为rad / s,以获得23.0383461 rad / sec。
采集数据的芯片的采样频率为30Hz,因此我将其转换为rad / s以获得188.495559 rad / s。
在网上查找了一些东西之后,我发现了一些我想做成低通的带通滤波器的功能。这是带通代码的链接,所以我将其转换为:
from scipy.signal import butter, lfilter
from scipy.signal import freqs
def butter_lowpass(cutOff, fs, order=5):
nyq = 0.5 * fs
normalCutoff = cutOff / nyq
b, a = butter(order, normalCutoff, btype='low', analog = True)
return b, a
def butter_lowpass_filter(data, cutOff, fs, order=4):
b, a = butter_lowpass(cutOff, fs, order=order)
y = lfilter(b, a, data)
return y
cutOff = 23.1 #cutoff frequency in rad/s
fs = 188.495559 #sampling frequency in rad/s
order = 20 #order of filter
#print sticker_data.ps1_dxdt2
y = butter_lowpass_filter(data, cutOff, fs, order)
plt.plot(y)
我对此感到非常困惑,因为我很确定黄油功能会以rad / s为单位输入截止频率和采样频率,但是我似乎得到了一个奇怪的输出。实际上是Hz吗?
其次,这两行的目的是什么:
nyq = 0.5 * fs
normalCutoff = cutOff / nyq
我知道这与标准化有关,但我认为奈奎斯特是采样频率的2倍,而不是一半。为什么要使用奈奎斯特作为归一化器?
有人可以解释更多有关如何使用这些功能创建过滤器的信息吗?
我使用以下方法绘制了过滤器:
w, h = signal.freqs(b, a)
plt.plot(w, 20 * np.log10(abs(h)))
plt.xscale('log')
plt.title('Butterworth filter frequency response')
plt.xlabel('Frequency [radians / second]')
plt.ylabel('Amplitude [dB]')
plt.margins(0, 0.1)
plt.grid(which='both', axis='both')
plt.axvline(100, color='green') # cutoff frequency
plt.show()
得到的结果显然不会以23 rad / s的速度截止: