Peak detection of measured signal

前端 未结 9 1203
北荒
北荒 2020-11-28 01:03

We use a data acquisition card to take readings from a device that increases its signal to a peak and then falls back to near the original value. To find the peak value we c

9条回答
  •  借酒劲吻你
    2020-11-28 02:08

    This method is basically from David Marr's book "Vision"

    Gaussian blur your signal with the expected width of your peaks. this gets rid of noise spikes and your phase data is undamaged.

    Then edge detect (LOG will do)

    Then your edges were the edges of features (like peaks). look between edges for peaks, sort peaks by size, and you're done.

    I have used variations on this and they work very well.

提交回复
热议问题