python 声音基频f0_如何在时域中计算音调基频f(0)?

该博客介绍了一个Python函数用于在时域中检测声音信号的峰值,从而计算音调基频f0。通过使用一阶差分填充平直区域,并应用阈值和最小距离限制来识别峰值。然后,通过自相关函数找到第一个峰值,以确定基频。
摘要由CSDN通过智能技术生成

defindexes(y,thres=0.3,min_dist=1,thres_abs=False):"""Peak detection routine borrowed from

https://bitbucket.org/lucashnegri/peakutils/src/master/peakutils/peak.py

"""ifisinstance(y,np.ndarray)andnp.issubdtype(y.dtype,np.unsignedinteger):raiseValueError("y must be signed")ifnotthres_abs:thres=thres*(np.max(y)-np.min(y))+np.min(y)min_dist=int(min_dist)# compute first order differencedy=np.diff(y)# propagate left and right values successively to fill all plateau pixels (0-value)zeros,=np.where(dy==0)# check if the signal is totally flatiflen(zeros)==len(y)-1:returnnp.array([])iflen(zeros):# compute first order difference of zero indexeszeros_diff=np.diff(zeros)# check when zeros are not chained togetherzeros_diff_not_one,=np.add(np.where(zeros_diff!=1),1)# make an array of the chained zero indexeszero_plateaus=np.split(zeros,zeros_diff_not_o

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值