Which algorithm should I use for signal (sound) one class classification?

前端 未结 11 1640
暖寄归人
暖寄归人 2021-01-31 21:53

Update this question was previously titled as \"Give me the name of a simple algorithm for signal(sound) pattern detection\"

  1. My o
11条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-01-31 22:34

    A step up from convolution is dynamic time warping which can be thought of as a convolution operator that stretches and shrinks one signal to optimally match another.

    Perhaps a simpler approach would be to do an FFT of the sample and determine if your insect any particular frequencies that can be filtered on.

    On the more complex side, but not quite a neural network, are SVM toolkits like libsvm and svmlight that you can throw your data at.

    Regardless of the path you attempt, I would spend time exploring the nature of the sound your insect makes using tools like FFT. After all, it will be easier teaching a computer to classify the sound if you can do it yourself.

提交回复
热议问题