Can an FFT be used to extract individual sinusoids from a set of data points?

  • Context: Undergrad 
  • Thread starter Thread starter jameslat
  • Start date Start date
  • Tags Tags
    Fft Sinusoids
Click For Summary
SUMMARY

The discussion centers on using Fast Fourier Transform (FFT) to extract individual sinusoids from a set of data points, particularly in the context of an accelerometer project. The user successfully implemented FFT in Python using libraries such as NumPy and Matplotlib to analyze a dummy signal. Key insights include the interpretation of FFT results as complex values representing harmonic components and the potential applications of FFT in image processing, such as identifying aircraft in satellite photos by standardizing illumination and direction.

PREREQUISITES
  • Understanding of Fast Fourier Transform (FFT) and its applications
  • Familiarity with Python programming, specifically using NumPy and Matplotlib
  • Knowledge of complex numbers and their representation in Fourier series
  • Basic concepts of signal processing and data visualization
NEXT STEPS
  • Explore advanced FFT techniques in Python using the SciPy library
  • Learn about the inverse FFT (IFFT) and its applications in signal reconstruction
  • Investigate the use of FFT in image processing for object recognition
  • Study the impact of windowing functions on FFT results for better frequency resolution
USEFUL FOR

This discussion is beneficial for data scientists, signal processing engineers, and software developers interested in applying FFT for data analysis and image processing tasks.

jameslat
Messages
28
Reaction score
0
Hello,

Thank you for taking time to read my post.

Background: I have a accelerometer project that I am playing with that gives me the acceleration of the object. I can plot this data and it looks very nice. I want to integrate this to get the velocity and then integrate it again to get the position over time.

Question: is there a way to extract the individual sinusoids out of a fast Fourier transform of a discrete set of data points?
I understand that the FFT of the set of data points gives me the amplitude of each sinusoids for its respective frequency. But how can I extract the Fourier series representation of my set of data points?
 
Physics news on Phys.org
A FFT will give you a complex value for each harmonic in your set of discrete data points.

Say that the FFT value of the 4. harmonic is ( 0.3 + 0.5i ), you may interprete it as 0.3*cos(4ωt) + 0.5*sin(4ωt)

. . . if I understand you correct.
 
  • Like
Likes   Reactions: jameslat
Works perfectly! I can't believe that it was that straight forward. You have been very helpful. Here is my python code as a contribution to the community (this is obviously for a dummy signal):


Python:
import numpy as n
import matplotlib.pyplot as plt
from scipy.fftpack import fft, ifft, fftfreq

#create our dummy signal
x=[]
xaxis = n.linspace(0,2*n.pi,num=1000)
for i in range(0,xaxis.size):
    x.append( n.exp(-xaxis[i])*n.sin((xaxis[i])))

#take the fft of the dummy signal
xfft = fft(x)

#find out what the 10 main frequencies are and add them to a list
main =[]
tempMain = 0;
for i in range(0,999):
    for j in range(-10,10):
        a_ = n.real(xfft[j])
        b_ = n.imag(xfft[j])
        w_ = 1 #really w=2pi*f, f=1/T, T=2pi therefore w=1
        n_ = 1000
       
        tempMain += (a_*n.cos(j*w_*xaxis[i])+b_*n.sin(j*w_*xaxis[i]))/n_
       
       
       
    main.append(tempMain)
    tempMain = 0

#this will reverse the order of the list. FFT will cause the data to be mirrored.
main=main[::-1]

#plot the beauties. blue is the original, main is the fit
plt.figure()
plt.plot(a,'b')
plt.plot(main, 'r')
plt.show()
Thanks again!
 
Well, I have recently done some experiments, transforming some shapes like the letters 'E' and 'F'.

Then I calculate the transfer function from 'F' to 'E':

FFT(H) = FFT('E') / FFT('F').

Now, if I transform the letter 'O' and calculate:

IFFT( FFT('O') * FFT(H) ), will I get a 'Q' ??
 
will iFFT( FFT('O') * FFT(H) ), result in a backwards 9?
I haven't ever find anything like that before. It seems interesting though.
 
You can do a lot with these transforms.

Say you have a sattelite photo of a milititary airport and you want to know how many jet fighters of which type is parked in this airport, you can employ a lot of people with magnifying glasses to count these planes. But also you could stuff the photo into a computer, that will place silhouttes of the planes into a complex plane. Now the computer can convert edge pixels of the silhouette to complex numbers, that can be FFT-transformed.

The 0. harmonic tells about the mean illumination in the photo. That's not interesting, so all harmonics in the transform is divided by the 0. harmonic to "standardize" the illumination.

The 1. harmonic tells about in which direction the plane is parked. Different directions could be confusing to the computer, but if you divide all the harmonics by the 1. harmonic, so that the 1. harmonic becomes ( 1 + 0i ), all the planes will be parked in the same direction, and with the same size. In this way you have made a "stadardized" FFT of the jet plane, which you could regard as a "finger print" of the plane.

Now the computer just have to find a matching finger print in a look up table to identify the type of plane.

Another example is to remove blur in a photo due to linear motion of an object ( passing car, where the registration number cannot be read due to blur ).
 

Similar threads

  • · Replies 2 ·
Replies
2
Views
1K
  • · Replies 3 ·
Replies
3
Views
3K
  • · Replies 1 ·
Replies
1
Views
3K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 3 ·
Replies
3
Views
5K
  • · Replies 10 ·
Replies
10
Views
2K
  • · Replies 24 ·
Replies
24
Views
5K
  • · Replies 5 ·
Replies
5
Views
3K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 5 ·
Replies
5
Views
4K