I have implemented Demetri's Pitch Detector project for the iPhone and hitting up against two problems. 1) any sort of background noise sends the frequency reading bananas and 2) lower frequency sounds aren't being pitched correctly. I tried to tune my guitar and while the higher strings worked - the tuner could not correctly discern the low E.

The Pitch Detection code is located in RIOInterface.mm and goes something like this ...

// get the data
AudioUnitRender(...);

// convert int16 to float
Convert(...);

// divide the signal into even-odd configuration
vDSP_ctoz((COMPLEX*)outputBuffer, 2, &A, 1, nOver2);

// apply the fft
vDSP_fft_zrip(fftSetup, &A, stride, log2n, FFT_FORWARD);

// convert split real form to split vector
vDSP_ztoc(&A, 1, (COMPLEX *)outputBuffer, 2, nOver2);

Demetri then goes on to determine the 'dominant' frequency as follows:

float dominantFrequency = 0;
int bin = -1;
for (int i=0; i<n; i+=2) {
    float curFreq = MagnitudeSquared(outputBuffer[i], outputBuffer[i+1]);
    if (curFreq > dominantFrequency) {
        dominantFrequency = curFreq;
        bin = (i+1)/2;
    }
}
memset(outputBuffer, 0, n*sizeof(SInt16));

// Update the UI with our newly acquired frequency value.
[THIS->listener frequencyChangedWithValue:bin*(THIS->sampleRate/bufferCapacity)];

To start with, I believe I need to apply a LOW PASS FILTER ... but I'm not an FFT expert and not sure exactly where or how to do that against the data returned from the vDSP functions. I'm also not sure how to improve the accuracy of the code in the lower frequencies. There seem to be other algorithms to determine the dominant frequency - but again, looking for a kick in the right direction when using the data returned by Apple's Accelerate framework.

UPDATE:

The accelerate framework actually has some windowing functions. I setup a basic window like this

windowSize = maxFrames;
transferBuffer = (float*)malloc(sizeof(float)*windowSize);
window = (float*)malloc(sizeof(float)*windowSize);
memset(window, 0, sizeof(float)*windowSize);
vDSP_hann_window(window, windowSize, vDSP_HANN_NORM); 

which I then apply by inserting

vDSP_vmul(outputBuffer, 1, window, 1, transferBuffer, 1, windowSize); 

before the vDSP_ctoz function. I then change the rest of the code to use 'transferBuffer' instead of outputBuffer ... but so far, haven't noticed any dramatic changes in the final pitch guess.

link|improve this question

76% accept rate
two things I remember from playing with this stuff a few years back: you can set a squelch level for the background sound just by subtracting the raw input data from a predetermined amount (which you can guess at for now, until you figure out a good algorithm), setting anything that goes below 0 to 0. and lower frequencies, for some reason I can't remember, don't register as loud as higher, so you need to scale up the low frequency volumes exponentially before comparing to a higher dominant frequency. – jcomeau_ictx Aug 24 '11 at 20:17
You don't appear to be applying a suitable window function prior to your FFT, so there will be a lot of artefacts in the power spectrum which will probably mess up any kind of attempt at pitch detection. – Paul R Aug 24 '11 at 20:22
1  
If this is an iPhone project, note that there are almost 200 guitar tuner apps already in the iOS App store. Many that I've tested do not appear to work reliably. No need to add to that category. – hotpaw2 Aug 24 '11 at 20:47
2  
Here's a nearly duplicate question with a similar answer: stackoverflow.com/questions/4227420/… – hotpaw2 Aug 24 '11 at 20:55
feedback

3 Answers

up vote 3 down vote accepted

Pitch is not the same as peak magnitude frequency bin (which is what the FFT in the Accelerate framework might give you directly). So any peak frequency detector will not be reliable for pitch estimation. A low-pass filter will not help when the note has a missing or very weak fundamental (common in some voice, piano and guitar sounds) and/or lots of powerful overtones in its spectrum.

Look at a wide-band spectrum or spectrograph of your musical sounds and you will see the problem.

Other methods are usually needed for a more reliable estimate of musical pitch. Some of these include autocorrelation methods (AMDF, ASDF), Cepstrum/Cepstral analysis, harmonic product spectrum, phase vocoder, and/or composite algorithms such as RAPT (Robust Algorithm for Pitch Tracking) and YAAPT. An FFT is useful as only a sub-part of some of the above methods.

link|improve this answer
Thanks @hotpaw2. I will have to dig into some of the techniques you list here. Thanks for the suggestions. – Luther Baker Aug 26 '11 at 0:49
feedback

At the very least you need to apply a window function to your time domain data prior to calculating the FFT. Without this step the power spectrum will contain artefacts which will interfere with your attempts at extracting pitch information. A simple Hann (aka Hanning) window should suffice.

link|improve this answer
feedback

What is your sample frequency and blocksize? Low E is around 80 Hz, so you need to make sure your capture block is long enough to capture many cycles at this frequency. This is because the Fourier Transform divides the frequency spectrum into bins, each several Hz wide. If you sample at 44.1 kHz and have a 1024 point time domain sample, for instance, each bin will be 44100/1024 = 43.07 Hz wide. Thus a low E would be in the second bin. For a bunch of reasons (to do with spectral leakage and the nature of finite time blocks), practically speaking you should consider the first 3 or 4 bins of data in an FFT result with extreme suspicion.

If you drop the sample rate to 8 kHz, the same blocksize gives you bins that are 7.8125 Hz wide. Now low E will be in the 10th or 11th bin, which is much better. You could also use a longer blocksize.

And as Paul R points out, you MUST use a window to reduce spectral leakage.

link|improve this answer
I've tried both 22050 and 44100. I've also tried blocksizes of 1024, 2048 and 4096 in a sort of circular buffer that saves each callback's data until I've got a 'blocksize' amount. I do understand the idea that, given a fixed blocksize, a lower sampling rate will give me slightly wider bins and make it slightly easier to hear the low E. Unfortunately, what I notice is that once I get down to around 295 Hz, the tuner starts to read numbers like 883 and 901. Very very close to multiples of 2 and 3 of the real tone. – Luther Baker Aug 26 '11 at 0:35
I am generating tones on another iPhone I've got sitting around. I've noticed that as I 'turn it up', and my pure sounding sine starts to sound edgy, the tuner loses the correct value it was displaying and starts to stray into other frequencies --- not necessarily multiples of 2 or 3 of the fundamental tone I am looking for. – Luther Baker Aug 26 '11 at 0:37
A longer block size is a good start for any of the pitch estimators, but an FFT magnitude peak still won't work for any sound with a missing or weak fundamental frequency (even if by mic roll-off). – hotpaw2 Aug 26 '11 at 1:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.