python - Python中的峰值检测算法

标签 python function detection detect

我正在 Python 中实现峰值检测算法,该算法仅检测那些高于阈值幅度的峰值。我不想使用内置函数,因为我还必须将此模拟扩展到硬件实现。

from math import sin,isnan
from pylab import *

def peakdet(v, delta,thresh,x):
    delta=abs(delta)
    maxtab = []
    mintab = []

    v = asarray(v)

    mn, mx = v[0], v[0]
    mnpos, mxpos = NaN, NaN

    lookformax = True

    for i in arange(len(v)):
        this = v[i]
        if abs(this)>thresh:
            if this > mx:
                mx = this
                mxpos = x[i]
            if this < mn:
                mn = this
                mnpos = x[i]
            if lookformax:
                if (this < mx-delta):
                    if (mx>abs(thresh)) and not isnan(mxpos):
                        maxtab.append((mxpos, mx))
                    mn = this
                    mnpos = x[i]
                    lookformax = False
            else:
                if (this > mn+delta):
                    if (mn<-abs(thresh)) and not isnan(mnpos):
                        mintab.append((mnpos, mn))
                    mx = this
                    mxpos = x[i]
                    lookformax = True
    return array(maxtab), array(mintab)

#Input Signal
t=array(range(100))
series=0.3*sin(t)+0.7*cos(2*t)-0.5*sin(1.2*t)

thresh=0.95 #Threshold value
delta=0.0 #

a=zeros(len(t)) #
a[:]=thresh #

maxtab, mintab = peakdet(series,delta,thresh,t)

#Plotting output
scatter(array(maxtab)[:,0], array(maxtab)[:,1], color='red')
scatter(array(mintab)[:,0], array(mintab)[:,1], color='blue')
xlim([0,t[-1]])
title('Peak Detector')
grid(True)
plot(t,a,color='green',linestyle='--',dashes=(5,3))
plot(t,-a,color='green',linestyle='--',dashes=(5,3))
annotate('Threshold',xy=(t[-1],thresh),fontsize=9)
plot(t,series,'k')
show()

该程序的问题在于,即使某些峰值高于阈值,它也无法检测到它们。 这是我得到的输出:

Peak Detection Output

我看到其他帖子也有峰值检测问题,但找不到任何解决方案。请帮助并提出更正建议。

最佳答案

使用scipy.signal中的find_peaks解决方案

from scipy.signal import find_peaks
import numpy as np
import matplotlib.pyplot as plt

# Input signal
t = np.arange(100)
series = 0.3*np.sin(t)+0.7*np.cos(2*t)-0.5*np.sin(1.2*t)

# Threshold value (for height of peaks and valleys)
thresh = 0.95

# Find indices of peaks
peak_idx, _ = find_peaks(series, height=thresh)

# Find indices of valleys (from inverting the signal)
valley_idx, _ = find_peaks(-series, height=thresh)

# Plot signal
plt.plot(t, series)

# Plot threshold
plt.plot([min(t), max(t)], [thresh, thresh], '--')
plt.plot([min(t), max(t)], [-thresh, -thresh], '--')

# Plot peaks (red) and valleys (blue)
plt.plot(t[peak_idx], series[peak_idx], 'r.')
plt.plot(t[valley_idx], series[valley_idx], 'b.')

plt.show()

结果图如下所示。

enter image description here

请注意,find_peaks 有一个参数height,我们在这里称之为thresh。它还有一个名为 threshold 的参数,它正在执行其他操作。

Documentation for find_peaks

关于python - Python中的峰值检测算法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50756793/

相关文章:

javascript - 为移动网页选择性加载 javascript 的最佳方法?

opencv - 训练级联分类器来检测论文

python - 在Python中,如何 "point"到类中的外部对象?

javascript - 访问自执行函数中的同级函数

Python:函数 print() 中的语法无效

php - 使用 PDO 时为 "Notice: Undefined variable: db"

c++ - 构造函数中的 "No matching function call"

c - 有没有办法检测是否按下了某个键?

python - 如何减少协方差函数的输出时间

python - 从 settings.py 文件夹内的应用程序设置 AUTH_USER_MODEL