Chord detection algorithms?

后端 未结 7 1103
别那么骄傲
别那么骄傲 2020-12-12 15:40

I am developing software that depends on musical chords detection. I know some algorithms for pitch detection, with techniques based on cepstral analysis or autocorrelation

7条回答
  •  無奈伤痛
    2020-12-12 16:30

    This is quite a good Open Source Project: https://patterns.enm.bris.ac.uk/hpa-software-package

    It detects chords based on a chromagram - a good solution, breaks down a window of the whole spectrum onto an array of pitch classes (size: 12) with float values. Then, chords can be detected by a Hidden Markov Model.

    .. should provide you with everything you need. :)

提交回复
热议问题