Tagged Questions

FFTW, "The Fastest Fourier Transform in The West", is a C library which implements discrete Fourier Transforms. It is licensed under the GNU GPL.

learn more… | top users | synonyms

8
votes
1answer
519 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
3answers
2k views

How to extract semi-precise frequencies from a WAV file using Fourier Transforms

Let us say that I have a WAV file. In this file, is a series of sine tones at precise 1 second intervals. I want to use the FFTW library to extract these tones in sequence. Is this particularly hard ...
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 ...
4
votes
2answers
442 views

Where can I find a good source of information that explains FFT phase correlation scoring

I've been looking to the OpenCV's magnificent source code to understand the score calculation. As you may have noticed the library can find a template in an image with a confidence score. ...
4
votes
2answers
728 views

Problem casting STL complex<double> to fftw_complex

The FFTW manual says that its fftw_complex type is bit compatible to std::complex<double> class in STL. But that doesn't work for me: #include <complex> #include <fftw3.h> int ...
4
votes
2answers
1k views

Magnitude of FFT result depends on wave frequency?

I'm baffled by the results I'm getting from FFT and would appreciate any help. I'm using FFTW 3.2.2 but have gotten similar results with other FFT implementations (in Java). When I take the FFT of a ...
3
votes
2answers
419 views

FFTW: signal consists of noise after IFFT

After doing FFT and IFFT I can hear only noise in my headphones... Here is the code: double* spectrum = new double[n]; fftw_plan plan; plan = fftw_plan_r2r_1d(n, data, ...
3
votes
1answer
1k views

How to extract frequency information from samples from PortAudio using FFTW in C

I want to make a program that would record audio data using PortAudio (I have this part done) and then display the frequency information of that recorded audio (for now, I'd like to display the ...
2
votes
1answer
52 views

Accessing OpenCV 1.0 image pixel values and using them in FFTW

I am using an OpenCV 1.0 based calibration toolbox to which I am making small additions. My additions require the use of the FFTW library (OpenCV has DFT functions but they aren't to my liking). I ...
2
votes
2answers
170 views

Forward FFT an image and backward FFT an image to get the same result

I am trying to FFT an image using the library from http://www.fftw.org/ so that I can do a convolution in the frequency domain. But I can't figure out how to make it work. To understand how to do this ...
2
votes
1answer
159 views

CUFFT output not aligned the same as FFTW output

I am doing a 1D FFT. I have the same input data as would go in FFTW, however, the return from CUFFT does not seem to be "aligned" the same was FFTW is. That is, In my FFTW code, I could calculate the ...
2
votes
0answers
350 views

Linking FFTW into an Android NDK application

I'm am currently writing a genre classification application as my final year project in Computer Engineering. I initially wrote the feature extraction code (implimenting FFTW) in C and now I need to ...
2
votes
1answer
105 views

How to use the initializer in a Python ThreadPool

I am trying to do threaded convolution using PyFFTW, in order to calculate a large number of 2D convolutions simultaneously. (One does not need separate processes, since the GIL is released for Numpy ...
2
votes
2answers
50 views

Benchmarking approaches for fft algorithms

I'm currently working on a library that has its own internal fft (Fast Fourier Transform) library which I would like to replace with FFTW. Now, other developers are a bit concerned about the ...
2
votes
4answers
607 views

Improving FFT performance in Python

What is the fastest FFT implementation in Python? It seems numpy.fft and scipy.fftpack both are based on fftpack, and not FFTW. Is fftpack as fast as FFTW? What about using multithreaded FFT, or ...
2
votes
0answers
329 views

Linking FFTW into Matlab Mex file

I am trying to run FFTW code in a mex file. This is strictly for the purpose of development and testing. After some googling, I see that others have tried to do something similar and have had ...
2
votes
1answer
298 views

Two Dimensional FFTW Help

I'm currently trying to compute the fft of an image via fftw_plan_dft_2d. To use this function, I'm linearizing the image data into an in array and calling the function mentioned above (and detailed ...
2
votes
3answers
213 views

Python: How to keep variable memory location across assignment?

I'm still pretty new to Python, so forgive me this question if it's stupid. I could not find an answer through Google... I am using PyFFTW in my code, which has a planning stage, where you pass it ...
2
votes
2answers
336 views

scaling factor for CUFFT

I wrote a simple test program, where I was doing Complex to Complex FT's and I just generated some data 1..50 and stuck it in for the real and imaginary part for each index of the array. When I do an ...
2
votes
1answer
509 views

Differences between FFTW and CUFFT output

In the char I have posted below, I am comparing the results from an IFFT run in FFTW and CUFFT. What are the possible reasons this is coming out different? Is it really THAT much round off error? ...
2
votes
1answer
397 views

What's the equivalent function in KissFFT for fftw_plan_dft_r2c_1d() from FFTW?

I've got a project that uses fftw_plan_dft_r2c_1d and fftw_plan_dft_c2r_1d from FFTW, as well as fftw_execute. What are the equivalent functions in KissFFT?
2
votes
2answers
2k views

fftw in Visual Studio?

I'm trying to link my project with fftw and so far, I've gotten it to compile, but not link. As the site said, I generated all the .lib files (even though I'm only using double precision), and copied ...
2
votes
1answer
845 views

FFT of an image

I have an assignment about fftw and I was trying to write a small program to create an fft of an image. I am using CImg to read and write images. But all I get is a dark image with a single white dot ...
1
vote
1answer
71 views

Problems using FFTW library in Linux and Eclipse IDE

So I'm working with some older code I wrote some time ago. I was originally going to port it to Windows, had some success, but quickly ran into other problems and decided to move back to a *nix ...
1
vote
1answer
100 views

why fftw on windows is faster than linux?

I wrote two identical programs in Linux and Windows using the fftw libraries (fftw3.a, fftw3.lib), and compute the duration of the fftwf_execute(m_wfpFFTplan) statement (16-fft). For 10000 runs: On ...
1
vote
1answer
18 views

Wither a given FFTW lib was compilled in a single or double precision?

Is there a way for to check - wither FFTW was compilled in a single or double precision?
1
vote
1answer
62 views

FFT image/pixelcolors with fftw library

I am trying to forward Fast Fourier Transfer an Image and then backward Fast Fourier Transfer it. I am using the library from http://www.fftw.org/. The thing is that I have stored the RGB values in a ...
1
vote
1answer
121 views

Is there any practical difference between the FFT and the inverse FFT?

FFT libraries such as FFTW or numpy.fft typically provide two functions fft() and ifft() (and special versions thereof for real valued input). Those functions appear to be defined such that ...
1
vote
1answer
191 views

Segmentation fault using FFTW

I have a pretty involving program that uses an in house FFT algorithm. I recently decided to try using FFTW for a performance increase. Just as a simple test to ensure that FFTW would link and run, I ...
1
vote
0answers
185 views

FFTW: Trouble with real to complex and complex to real 2D tranfsorms

As the title states I'm using FFTW (version 3.2.2) with Fortran 90/95 to perform a 2D FFT of real data (actually a field of random numbers). I think the forward step is working (at least I am getting ...
1
vote
1answer
61 views

Pixelvalues of an image in a 2D double* pointer for calculating FFT_2D

I want to calculate the FFT of an image, I read the image, and the ITK SmartPointer is called “imagen”. The input of the function I use for calculating the FFT (fftw_plan_dft_r2c_2d) need a 2D double* ...
1
vote
1answer
207 views

ERROR LNK2019 ( Unresolved external symbol) IN VS2008 WITH ITK AND FFTW

I am performing a project with ITK for processing medical images. After a lot of work there is no further compilation errors, but in the linking process I am having the following info : ...
1
vote
1answer
72 views

Taking a second derivative in FFTW3

I have tested my code for some real functions using a forward FFT and IFFT (normalized the result), this works fine. I would, however, like to take a second derivative of a real function. For ...
1
vote
1answer
311 views

fftw interface with complex.h in c

I am using this code to create a 2D array having data type complex (from complex.h in c). Then I want to find the fft of that array 'in place'. However it is giving segmentation fault, which I fear is ...
1
vote
1answer
355 views

Solving the 1D heat equation using FFTW in C++

I recently just picked up programming again for school and I am running across an issue with my code that involves the Fast Fourier Transform package FFTW. In my code, I start with an initial ...
1
vote
2answers
363 views

computing fft and ifft with fftw.h in C

Hi all I am using the fftw C libraries to compute the frequency spectrum for some signal processing applications on embedded systems. However, in my project I have run into a slight hinderence. Below ...
1
vote
0answers
446 views

Audio processing with fft iphone app

I am working on one app in which i need to do the spectrum analysis of the incoming audio sounds. I am new to it only thing i know is that i need to use the FFT. I looked in to the aurio touch app but ...
1
vote
1answer
99 views

fftwpp creates a zero filled array after a convolution

I use fftwpp to transform both my data and my convolution kernel into the fourier space, multiply them together like in a scalar product and convert them back to the real space. When I first run the ...
1
vote
1answer
379 views

How to do inverse real to real FFT in FFTW library

I'm trying to do some filtering with FFT. I'm using r2r_1d plan and I have no idea how to do the inverse transform... void PerformFiltering(double* data, int n) { /* FFT ...
1
vote
2answers
294 views

FFTW: Inverse of forward fft not equal to original function

I'm trying to use FFTW to compute fast summations, and I've run into an issue: int numFreq3 = numFreq*numFreq*numFreq; FFTW_complex* dummy_sq_fft = (FFTW_complex*)FFTW_malloc( ...
1
vote
0answers
1k views

static linking fftw3 into shared library

I'm working on some pitch correction software for Android, and I am looking to get fftw3 working on Android using the NDK. The pitch correction library (talentedhack, ...
1
vote
3answers
1k views

How to integrate FFTW3 into an iPhone app?

I'm trying to integrate the FFTW3 (a GNU FFT library written in C, http://www.fftw.org/) into an iPhone app. I downloaded the source code and I found there are hundreds of .h and .c files along with a ...
1
vote
1answer
507 views

Pitch recognition of musical notes on a smart phone, pt. 2

As a follow-up to my previous question, if I want my smartphone application to detect a certain musical note, and I only need to know whether the incoming sound is that musical note or not, with a ...
1
vote
3answers
538 views

Multi threaded FFTW 3.1.2 on a shared memory computer

I use FFTW 3.1.2 with Fortran to perform real to complex and complex to real FFTs. It works perfectly on one thread. Unfortunately I have some problems when I use the multi-threaded FFTW on a 32 CPU ...
1
vote
1answer
450 views

Newbie Thread Question (FFTW)

I'm using the threaded version of FFTW (a FFT library) to try to speed up some code on a dual CPU machine. Here is the output of time w/ only 1 thread: 131.838u 1.979s 2:13.91 99.9% Here it is with ...
0
votes
1answer
13 views

Can't link to fftw library using visual C++ express on windows 64 bit

I'm trying to link to the fftw library using visual c++ express, but am getting linker errors when I try to compile. I generated the lib files as the site (http://fftw.org/install/windows.html) ...
0
votes
0answers
33 views

FFTW in a loop not working

I am using 'fftw' integrated in a project with Visual Studio 2008 and ITK ( Insight Segmentation and Registration Toolkit) for medical image processing. I have a loop for a specific number of ...
0
votes
0answers
46 views

Resolving numerical difference between MATLAB fft2() and its fftw_plan_dft_2d() C++ implementation

I'm trying to implement the MATLAB fft2() and ifft2() function in C++ using OpenCV and the FFTW3.3 library. I've been able to successfully port the code, which perform the forward and inverse ...
0
votes
0answers
25 views

Adapting fftwf_plan_r2r_2d to Accelerate Framework

I am working on porting some code that uses the FFTW library to perform some gradient-domain image processing on a single channel float image. The current code calls fftwf_plan_r2r_2d() on a floating ...
0
votes
2answers
52 views

poisson eq. with spectral method

I wrote poisson eq. solver with spectral method. However, the obtained result does not coincide with the result of difference method with periodic boundary condition. I think I am mistaken in the use ...

1 2