Tagged Questions

Short for Fast Fourier Transform, any of a set of algorithms for quickly computing the Discrete Fourier Transform.

learn more… | top users | synonyms (2)

24
votes
9answers
23k views

Fast fourier transform in c#

Where can I find a free, very quick, and reliable implementation of FFT in C#? Can be used in a product? or are there any restrictions?
21
votes
2answers
6k views

Analyze audio using Fast Fourier Transform

I am trying to create a graphical spectrum analyzer in python. I am currently reading 1024 bytes of a 16 bit dual channel 44,100 Hz sample rate audio stream and averaging the amplitude of the 2 ...
19
votes
4answers
3k views

Underlying technique of Android's FaceDetector

I'm implementing a face tracker on Android, and as a literature study, would like to identify the underlying technique of Android's FaceDetector. Simply put: I want to understand how the ...
17
votes
5answers
8k views

Peak-finding algorithm for Python/SciPy

I can write something myself by finding zero-crossings of the first derivative or something, but it seems like a common-enough function to be included in standard libraries. Anyone know of one? My ...
16
votes
2answers
281 views

Discrete Fourier transform

I am currently trying to write some fourier transform algorithm. I started with a simple DFT algorithm as described in the mathematical definition: public class DFT { public static Complex[] ...
15
votes
2answers
9k views

Using the apple FFT and accelerate Framework

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 ...
14
votes
6answers
2k views

Pitch recognition of musical notes on a smart phone

With limited resources such as slower CPUs, code size and RAM, how best to detect the pitch of a musical note, similar to what an electronic or software tuner would do? Should I use: Kiss FFT FFTW ...
12
votes
1answer
233 views

Asymptotically optimal way to find the sum of three elements of an array closest to a given number

In his answer to this question, John Feminella says: It's possible to do this sub-quadratically if you get really fancy, by representing each integer as a bit vector and performing a fast ...
11
votes
1answer
1k views

Is there an FFT that uses a logarithmic division of frequency?

Wikipedia's Wavelet article contains this text: The discrete wavelet transform is also less computationally complex, taking O(N) time as compared to O(N log N) for the fast Fourier transform. This ...
10
votes
5answers
198 views

Extremely large weighted average

I am using 64 bit matlab with 32g of RAM (just so you know). I have a file (vector) of 1.3 million numbers (integers). I want to make another vector of the same length, where each point is a weighted ...
10
votes
2answers
259 views

What is wrong with this fourier transform implementation

I'm trying to implement a discrete fourier transform, but it's not working. I'm probably have written a bug somewhere, but I haven't found it yet. Based on the following formula: This function ...
10
votes
7answers
5k views

Music - How do you analyse the fundamental frequency of a PCM or WAV sample

I have a sample held in a buffer from DirectX. It's a sample of a note played and captured from an instrument. How do I analyse the frequency of the sample (like a guitar tuner does)? I believe FFT's ...
9
votes
1answer
4k views

Android audio FFT to retrieve specific frequency magnitude using audiorecord

I am currently trying to implement some code using for android to detect when a number of specific audio frequency ranges are played through the phone's microphone. I have set up the class using the ...
9
votes
4answers
808 views

FFT Inaccuracy for C#

Ive been experimenting with the FFT algorithm. I use NAudio along with a working code of the FFT algorithm from the internet. Based on my observations of the performance, the resulting pitch is ...
9
votes
5answers
3k views

Extracting precise frequencies from FFT Bins using phase change between frames

I have been looking through this fantastic article: http://www.dspdimension.com/admin/pitch-shifting-using-the-ft/ While being fantastic, it is extremely hard and heavy going. This material is ...
9
votes
7answers
917 views

Getting starting with Parallel programming

So it looks like multicore and all its associated complications are here to stay. I am planning a software project that will definitely benefit from parallelism. The problem is that I have very little ...
8
votes
1answer
283 views

How plot the Riemann zeta zero spectrum with the Fourier transform in Mathematica?

In the paper "The Riemann Hypothesis" by J. Brian Conrey in figure 6 there is a plot of the Fourier transform of the error term in the prime number theorem. See the plot to the left in the image ...
8
votes
3answers
315 views

Fourier Domain - have I got my theory/terminology right? [closed]

In terms of images. Fourier transform converts spatial to frequency (Fourier) domain. DC value = average of sinusoids (sine waves), F(0,0) and average brightness/graylevel of image. Fourier has a ...
8
votes
1answer
523 views

Recent FFTW wrapper in Java

I'm seeking a minimal Java wrapper for a recent version of FFTW. The wrappers listed on the FFTW website are either out of date (jfftw-1.2.zip) or contain too much extra stuff (Shared Scientific ...
8
votes
1answer
678 views

Understanding Overlap and Add for Filtering

I am trying to implement the overlap and add method in oder to apply a filter in a real time context. However, it seems that there is something I am doing wrong, as the resulting output has a larger ...
8
votes
3answers
3k views

Python frequency detection

Ok what im trying to do is a kind of audio processing software that can detect a prevalent frequency an if the frequency is played for long enough (few ms) i know i got a positive match. i know i ...
8
votes
3answers
9k views

FFT for Spectrograms in Python

How would I go about using Python to read the frequency peaks from a WAV PCM file and then be able to generate an image of it, for spectogram analysis? I'm trying to make a program that allows you to ...
7
votes
2answers
309 views

Numerical instability FFTW <> Matlab

I am trying to numerically solve the Swift-Hohenberg equation http://en.wikipedia.org/wiki/Swift%E2%80%93Hohenberg_equation using a pseudo-spectral scheme, where the linear terms are treated ...
7
votes
4answers
6k views

Real-time pitch detection using FFT

I'm trying to do real-time pitch detection using C++. I'm testing some code from performous (http://performous.org/), because everything else hasn't worked for me. I know for sure that this works, but ...
7
votes
4answers
3k views

Explain the FFT to me

I want to take audio PCM data and find peaks in it. Specifically, I want to return the frequency and time at which a peak occurs. My understanding of this is that I have to take the PCM data and ...
7
votes
5answers
6k views

FFT-based 2D convolution and correlation in Python

Is there a FFT-based 2D cross-correlation or convolution function built into scipy (or another popular library)? There are functions like these: scipy.signal.correlate2d - "the direct method ...
6
votes
1answer
141 views

NAudio frequency band intensity

I have an audio player using NAudio and I would like to display a real time intensity for each frequency band. I have an event triggered for each block of 1024 samples: public void Update(Complex[] ...
6
votes
1answer
421 views

How to get frequency from fft result?

I have recorded an array[1024] of data from my mic on my Android phone, passed it through a 1D forward DFT of the real data (setting a further 1024 bits to 0). I saved the array to a text file, and ...
6
votes
3answers
191 views

Comparing audio recordings

I have 5 recorded wav files. I want to compare the new incoming recordings with these files and determine which one it resembles most. In the final product I need to implement it in C++ on Linux, but ...
6
votes
4answers
487 views

Need help understanding FFT output

I need some help understanding the output of the DFT/FFT computation. I'm an experienced software engineer and need to interpret some smartphone accelerometer readings, such as finding the principal ...
6
votes
1answer
2k views

Getting Fourier Transform from Phase and Magnitude - Matlab

The magnitude and phase of a fourier transform F are defined as: Mag = sqrt(Real(F)^2 + Imaginary(F)^2) and Phase = arctan(Imaginary(F)/Real(F)) Ive tried to write matlab code that takes in a ...
6
votes
3answers
3k views

Graphing the pitch (frequency) of a sound

I want to plot the pitch of a sound into a graph. Currently I can plot the amplitude. The graph below is created by the data returned by getUnscaledAmplitude(): AudioInputStream audioInputStream = ...
6
votes
3answers
635 views

MATLAB - Missing fundamental from an FFT

I am currently working on my fourth year project (computer science) which involves the automatic transcription of music -> sheet music. I am doing it in Matlab at the moment but will have to be ...
6
votes
3answers
1k views

Clojure/Java: Java libraries for spectrum analysis of sound?

I am looking for a library that can accept a chunk of audio data and return the average amplitude over time within a given frequency band. I've already asked this question over at comp.dsp, but it's ...
6
votes
4answers
3k views

DSP - Filtering in the frequency domain via FFT

I've been playing around a little with the Exocortex implementation of the FFT, but I'm having some problems. Whenever I modify the amplitudes of the frequency bins before calling the iFFT the ...
6
votes
2answers
293 views

Fourier transform and maximum

Is there a way to compute efficiently the Fourier transform of the max of two functions (f,g), knowing their Fourier transform?
6
votes
4answers
1k views

Audio Feature Extraction

I'm interested in learning about, and writing a system that will extract features from audio files (mp3, wav, etc) which can later be used for whatever purpose. In the future I hope to use it to ...
5
votes
5answers
207 views

How can I use fast FFT-based convolution to implement a LPF if the fast convolution requires a LPF?

I'm an experienced software engineer with some minor college DSP knowledge. I'm working on a smartphone application to process signal data, such as from the microphone (sampled at 44100 Hz) and the ...
5
votes
1answer
202 views

How to resample/rebin a spectrum?

In Matlab, I frequently compute power spectra using Welch's method (pwelch), which I then display on a log-log plot. The frequencies estimated by pwelch are equally spaced, yet logarithmically ...
5
votes
3answers
686 views

What is the difference between numpy.fft and scipy.fftpack?

Is the later just a synonym of the former, or are they two different implementations of FFT? Which one is better?
5
votes
3answers
609 views

Confusion with FFT algorithm

I am trying to understand the FFT algorithm and so far I think that I understand the main concept behind it. However I am confused as to the difference between 'framesize' and 'window'. Based on my ...
5
votes
2answers
1k views

Matlab Legend after FOR loop

I am creating a file to read in a certain number of .wav files, each of these corresponding to a musical note. I am performing an FFT on each of them and plotting them all on the same figure. However ...
5
votes
2answers
2k views

Android 2.3 Visualizer - Trouble understanding getFft()

First time here so sorry in advance for any butchered formatting. So I am completely new to DSP so I have only a very general understanding of the Fourier Transform. I am trying to build a visualizer ...
5
votes
2answers
3k views

How to generate the audio spectrum using fft in C++?

I want to generate an audio spectrum (http://www.youtube.com/watch?v=ZNT8Sn4IKbo&feature=related) of a mp3 audio file. Basically this problem requires calculating the fft of the audio signal. How ...
5
votes
4answers
521 views

comparing wav files

I have a (mostly) working program to compare two wav files, to see if the smaller one is in the bigger one. This is done in java. I do this by first making sure both wav files are in canonical wave ...
5
votes
6answers
1k views

Improving frequency resolution of FFT output by limiting frequency range?

I am new to FFTs and signal processing, so hopefully this question makes sense and/or isn't stupid. I would like to perform spectrum analysis on a live audio signal. My goal is to find a good ...
5
votes
1answer
962 views

Fast 2D convolution for DSP

I want to implement some image-processing algorithms which are intended to run on a beagleboard. These algorithms use convolutions extensively. I'm trying to find a good C implementation for 2D ...
5
votes
1answer
655 views

Efficient 2D FFT on real input data?

I'm currently implementing a two dimensional FFT for real input data using opencl (more specifically a fast 2D convolution using FFTs, so I only need something which behaves similary enough to apply ...
5
votes
4answers
1k views

fundamental question for DSP experts (regarding FFT, IFFT)

I'm not a DSP expert, but I understand that there are two ways that I can apply a discrete time-domain filter to a discrete time-domain waveform. The first is to convolve them in the time domain, and ...
5
votes
2answers
827 views

Why isn't this inverse Fourier transform giving the correct results?

I want to invert the Fourier transform of an image in MATLAB, but the result is not the original image (as it should be). There is obviously some implementation detail that I don't know about that's ...

1 2 3 4 5 11