vote up 2 vote down star
3

Hi, I am trying to find a very fast and efficient Fourier transform (FFT). Does anyone know of any good ones. I need to run it on the iPhone so it must not be intensive. Instead, maybe you know of one that is wavelet like, i need frequency resolution but only a narrow band (vocal audio range up to 10khz max...even 10Khz might be too high). Im thinking also of truncating this FFT to keep the frequency resolution while eliminating the unwanted frequency band. This is for an iphone

...I have taken a look at the FFT in Aurio touch but it seems this is an int FFT but my app uses floats.....would it give a big performance increase to try and adapt program to an int FFT or not(which i really dont feel like doing...plus aurio touch uses a radix 2 FFT which is not that great).

flag

Considering the Wavelet Transform is not computed in the same way as DFT, I would say there's no wavelet-like FFT algorithm. – rlbond Oct 20 at 3:55
how about a Wavelet-like fft in the sense of instead of having a square matrix(4096by4096 for a FFT of 4096 samples) we use 4096 time samples by 1024 frequency bins...these would not cover the whole nyquist band and so would keep the desired frequency resolution without require to compute them all....this is the multi resolution scale aspect of wavelets but with only one scale....so its like I was applying a filter....which is part of WFT – yan bellavance Oct 20 at 6:14

3 Answers

vote up 1 vote down check

The performance of the FFTW sets the standard for arbitrary length FFT's - especially for non-power of 2 lengths in 2 and greater dimensions. The commercial license for FFTW is $5000, which may or may not fit in your budget.

However, it sounds like you have a 1D signal processing problem in which case you have a few more options - and if you can further either pad or sample your data to power-of-2 lengths, then many libraries will offer reasonable performance. Check out this list of FFT algorithms that FFTW used for comparison - many are free and some may be adequate. I'd probably start with good old numerical recipes which offers an easy power of 2, 1D FFT implementation for free and some typing - and would be very memory efficient.

Paul

< CenterSpace Software, NMath; www.centerspace.net >

BTW - for voice you probably only need to go to 3-4Khz....10Khz is way way up there for the human voice.

link|flag
I agree but with a standard FFT the lower band frequency resolution gets hit hard by a reduction of FFT size because the frequency bins become too big – yan bellavance Oct 20 at 6:21
thanks, I will look into those links as I am always in power of 2 lengths – yan bellavance Oct 20 at 6:23
vote up 3 vote down

Give the Fastest Fourier Transform in the West (FFTW) a go, The performance is good compared to others, but it is not completely free. See the details on commercial use here. Obviously being a c library you should have no problem linking it as a static library to your iphone app.

link|flag
It does use shared memory FYI, you can't safely run it in parallel. not really sure if this is an issue on the iphone or not (probably not?) – Brian Gianforcaro Oct 20 at 4:54
1  
If you don't mind releasing your app under GPLv2 (you can't use GPLv3 for an iPhone app), it's completely free. If that's not compatible with your business model, you'll have to check the commercial options. – David Thornley Oct 20 at 21:59
vote up 2 vote down

I've wrapped Ooura's FFT library in Objective-C. Ooura's code is of comparable performance to FFTW, but totally and utterly free.

This code uses double-precision and has several built-in window types (rectangular, Blackwell, Triangle, Hamming). I use Ooura's FFT code to implement Welch's method, which will generate a much smoother spectra when viewed over time.

Check it out at: http://github.com/alexbw/iPhoneFFT

You can see the FFT in action in my app, "oScope", here: http://oscopeapp.com/oscope-in-action

link|flag

Your Answer

Get an OpenID
or

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