A few simple frequency estimation methods in Python
See also https://github.com/endolith/waveform-analyzer/blob/master/frequency_estimator.py, which is mostly the same thing, maybe more up-to-date. I need to keep them both in sync with each other or delete one.
These are the methods that everyone recommends when someone asks about frequency estimation or pitch detection. Such as here:
- Music - How do you analyse the fundamental frequency of a PCM or WAV sample
- CCRMA Pitch detection methods review
- Pitch Detection Algorithms (Middleton)
So these are my attempts at implementation. Initially I was trying to measure the frequency of long sine waves with high accuracy (to indirectly measure clock frequency), then added methods for other types of signals later.
None of them work well in all situations, these are "offline", not real-time, and I am sure there are much better methods "in the literature", but here is some sample code for the simple methods at least.
- Works well for long low-noise sines, square, triangle, etc.
- Supposedly this is how cheap guitar tuners work
- Using interpolation to find a "truer" zero-crossing gives better accuracy
- Pro: Fast
- Pro: Accurate (increasing with signal length)
- Con: Doesn't work if there are multiple zero crossings per cycle, low-frequency baseline shift, noise, etc.
- Using parabolic interpolation to find a truer peak gives better accuracy
- Accuracy also increases with signal/FFT length
- Con: Doesn't find the right value if harmonics are stronger than fundamental, which is common. Better method would try to be smarter about identifying the fundamental, like template matching using the "two-way mismatch" (TWM) algorithm.
- Pro: Accurate, usually even more so than zero crossing counter (1000.000004 Hz for 1000 Hz, for instance). Due to parabolic interpolation being a very good fit for windowed log FFT peaks?
- Pro: Best method for finding the true fundamental of any repetitive wave, even with weak or missing fundamental (finds GCD of all harmonics present)
- Con: Inaccurate result if waveform isn't perfectly repeating, like inharmonic musical instruments (piano, guitar, ...), however:
- Pro: This inaccurate result more closely matches the pitch that humans perceive :)
- Con: Not as accurate as other methods for precise measurement of sine waves
- Con: This implementation has trouble with finding the true peak
- Pro: Good at finding the true fundamental even if weak or missing
What is the format of sig? (#file-frequency_estimator-py-L12)