Has anybody used the apple FFT for an iPhone app yet or know where I might find a sample application as to how to use it? I know that apple has some sample code posted, but I'm not really sure how to implement it into an actual project.
|
|
I just got the FFT code working for an iPhone project:
You might also need to remove an entry from info.plist that tells the project to load a xib, but I'm 90% sure you don't need to bother with that. NOTE: Program outputs to console, results come out as 0.000 that's not an error –- it's just very very fast This code is really stupidly obscure; it is generously commented, but the comments don't actually make life any easier. Basically at the heart of it is:
FFT on n real floats, and then reverse to get back to where we started. ip stands for in-place, which means &A gets overwritten That's the reason for all this special packing malarkey -- so that we can squash the return value into the same space as the send value. To give some perspective (like, as in: why would we be using this function in the first place?), Let's say we want to perform pitch detection on microphone input, and we have set it up so that some callback gets triggered every time the microphone gets in 1024 floats. Supposing the microphone sampling rate was 44.1kHz, so that's ~44 frames / sec. So, our time-window is whatever the time duration of 1024 samples is, ie 1/44 s. So we would pack A with 1024 floats from the mic, set log2n=10 (2^10=1024), precalculate some bobbins (setupReal) and:
Now A will contain n/2 complex numbers. These represent n/2 frequency bins:
And the magnitude of each complex number is the amount of energy vibrating around that frequency. So, as you can see, it wouldn't be a very great pitch detector as it doesn't have nearly fine enough granularity. There is a cunning trick Extracting precise frequencies from FFT Bins using phase change between frames to get the precise frequency for a given bin. Ok, Now onto the code: Note the 'ip' in vDSP_fft_zrip, = ' in place ' ie output overwrites A ('r' means it takes real inputs) Look at the documentation on vDSP_fft_zrip,
this is probably the hardest thing to understand. We are using the same container (&A) all the way through the process. so in the beginning we want to fill it with n real numbers. after the FFT it is going to be holding n/2 complex numbers. we then throw that into the inverse transform, and hopefully get out our original n real numbers. now the structure of A its setup for complex values. So vDSP needs to standardise how to pack real numbers into it. so first we generate n real numbers: 1, 2, ..., n
Next we pack them into A as n/2 complex #s:
You would really need to look at how A is allocated to get this, maybe look up COMPLEX_SPLIT in the documentation.
Next it pre-calculates everything that can be precalculated. note that if you are doing this in real code you probably want to do this once when the app loads and call the complimentary release function once when it quits. DON'T do it lots of times -- it is expensive.
It's worth noting that if we set log2n to eg 8, you can throw these precalculated values into any fft function that uses resolution <= 2^8. So (unless you want ultimate memory optimisation) just create one set for the highest resolution you're going to need, and use it for everything. Now the actual transforms, making use of the stuff we just precalculated:
At this point A will be containing n/2 complex numbers, only the first one is actually two real numbers (DC offset, Nyquist #) masquerading as a complex number. The documentation overview explains this packing. it is quite neat -- basically it allows the (complex) results of the transform to be packed into the same memory footprint as the (real, but weirdly packaged) inputs.
and back again... we will still need to unpack our original array from A. then we compare just to check that we have got back exactly what we started out with, release our precalculated bobbins and done! But wait! before you unpack, there is one final thing that needs to be done:
|
|||||||||||||||||
|
|
Here's a real-world example: A snippet of c++ that uses Accelerate's vDSP fft routines to do autocorrelation on the Remote IO audio unit's input. Using this framework is pretty complicated, but the documentation isn't too bad.
|
|||||||||||||||
|
|
While I will say Apple's FFT Framework is fast... You need to know how an FFT works in order to get accurate pitch detection (i.e. calculating the phase difference on each successive FFT in order to find the exact pitch, not the pitch of the most dominate bin). I don't know if it's of any help, but I uploaded my Pitch Detector object from my tuner app (musicianskit.com/developer.php). There is an example xCode 4 project for download also (so you can see how the implementation works). I'm working on uploading an example FFT implementation -- so stay tuned and I'll update this once that happens. Happy coding! |
|||||||
|
