1 Discrete Fourier Transform. 2 Multiply element-by-element.

Slides:



Advertisements
Similar presentations
Computer Vision Lecture 7: The Fourier Transform
Advertisements

DFT/FFT and Wavelets ● Additive Synthesis demonstration (wave addition) ● Standard Definitions ● Computing the DFT and FFT ● Sine and cosine wave multiplication.
Basis beeldverwerking (8D040) dr. Andrea Fuster Prof.dr. Bart ter Haar Romeny dr. Anna Vilanova Prof.dr.ir. Marcel Breeuwer The Fourier Transform II.
Chapter Four Image Enhancement in the Frequency Domain.
Aristotle University of Thessaloniki – Department of Geodesy and Surveying A. DermanisSignals and Spectral Methods in Geoinformatics A. Dermanis Signals.
EECS 20 Chapter 10 Part 11 Fourier Transform In the last several chapters we Viewed periodic functions in terms of frequency components (Fourier series)
Image Fourier Transform Faisal Farooq Q: How many signal processing engineers does it take to change a light bulb? A: Three. One to Fourier transform the.
Time and Frequency Representation
Input image Output image Transform equation All pixels Transform equation.
Systems: Definition Filter
Goals For This Class Quickly review of the main results from last class Convolution and Cross-correlation Discrete Fourier Analysis: Important Considerations.
Signals and Systems Jamshid Shanbehzadeh.
Motivation Music as a combination of sounds at different frequencies
Image Processing Fourier Transform 1D Efficient Data Representation Discrete Fourier Transform - 1D Continuous Fourier Transform - 1D Examples.
EE D Fourier Transform. Bahadir K. Gunturk EE Image Analysis I 2 Summary of Lecture 2 We talked about the digital image properties, including.
Fourier series. The frequency domain It is sometimes preferable to work in the frequency domain rather than time –Some mathematical operations are easier.
Chapter 4: Image Enhancement in the Frequency Domain Chapter 4: Image Enhancement in the Frequency Domain.
: Chapter 14: The Frequency Domain 1 Montri Karnjanadecha ac.th/~montri Image Processing.
Two-Sided or Complex Exponential Form of the Fourier Series
Image Enhancement in the Frequency Domain Spring 2006, Jen-Chang Liu.
Spectral Analysis AOE March 2011 Lowe 1. Announcements Lectures on both Monday, March 28 th, and Wednesday, March 30 th. – Fracture Testing –
Leo Lam © Signals and Systems EE235 Lecture 21.
Chapter 7: The Fourier Transform 7.1 Introduction
Study Guide Final. Closed book/Closed notes Bring a calculator or use a mathematical program on your computer The length of the exam is the standard 2.
Why We Use Three Different, Equivalent Forms of the Fourier Series.
Digital Image Processing Chapter 4 Image Enhancement in the Frequency Domain Part I.
October 29, 2013Computer Vision Lecture 13: Fourier Transform II 1 The Fourier Transform In the previous lecture, we discussed the Hough transform. There.
By Ya Bao oct 1 Fourier Series Fourier series: how to get the spectrum of a periodic signal. Fourier transform: how.
Spatial Frequencies Spatial Frequencies. Why are Spatial Frequencies important? Efficient data representation Provides a means for modeling and removing.
Fourier Analysis of Discrete Time Signals
Part 4 Chapter 16 Fourier Analysis PowerPoints organized by Prof. Steve Chapra, University All images copyright © The McGraw-Hill Companies, Inc. Permission.
Signals & Systems Lecture 13: Chapter 3 Spectrum Representation.
Inverse DFT. Frequency to time domain Sometimes calculations are easier in the frequency domain then later convert the results back to the time domain.
CH#3 Fourier Series and Transform
7- 1 Chapter 7: Fourier Analysis Fourier analysis = Series + Transform ◎ Fourier Series -- A periodic (T) function f(x) can be written as the sum of sines.
Math Review Towards Fourier Transform
2D Fourier Transform.
Fourier Integral Fourier series of the function f [-p,p] The Fourier Integral of the function f.
The Frequency Domain Digital Image Processing – Chapter 8.
Fourier transform.
Digital Image Processing Lecture 7: Image Enhancement in Frequency Domain-I Naveed Ejaz.
Frequency Domain Representation of Biomedical Signals.
Hülya Yalçın ©1 Fourier Series. Hülya Yalçın ©2 3.
EE422G Signals and Systems Laboratory Fourier Series and the DFT Kevin D. Donohue Electrical and Computer Engineering University of Kentucky.
Digital Image Processing Lecture 8: Fourier Transform Prof. Charlene Tsai.
Image Enhancement and Restoration
Integral Transform Method
Section II Digital Signal Processing ES & BM.
MECH 373 Instrumentation and Measurements
LECTURE #3 Complex Exponentials & Complex Numbers
Dr. Nikos Desypris, Oct Lecture 3
For a periodic complex sound
2D Fourier transform is separable
8 DIGITAL SIGNAL SPECTRA
4.1 DFT In practice the Fourier components of data are obtained by digital computation rather than by analog processing. The analog values have to be.
Image Processing, Leture #14
Graphs of Sine and Cosine
Speech Pathologist #10.
Product-to-Sum and Sum-to-Product Formulas
Lecture 18 DFS: Discrete Fourier Series, and Windowing
I. Previously on IET.
7.2 Even and Odd Fourier Transforms phase of signal frequencies
The Fourier Transform Intro: Marisa, Nava, Compression Scheme project. Relies heavily on Fourier Transform.
Discrete Fourier Transform
Discrete Fourier Transform
Signals & Systems (CNET - 221) Chapter-4
Chapter 15: Wavelets (i) Fourier spectrum provides all the frequencies
Discrete Fourier Transform
ENEE222 Elements of Discrete Signal Analysis Lab 9 1.
The Frequency Domain Any wave shape can be approximated by a sum of periodic (such as sine and cosine) functions. a--amplitude of waveform f-- frequency.
Presentation transcript:

1 Discrete Fourier Transform

2 Multiply element-by-element

3 Cumulative sum shows:

4 2 signals of same frequency and phase

5 Multiply element-by-element

6 Non-zero cumulative sum

7 Same frequency but  /2 phase difference

8 Element-by element product with both sine and cosine waves

9 Cumulative sums

10 Wave: partly sine, partly cosine

11 Element-by-element multiplication

12 Cumulative sum

13 dftsimp2demo(f, fs, timelen, amp) dftsimp2demo(200, 1000, 0.02, 1)

14 dftsimp2demo(f, fs, timelen, amp) dftsimp2demo(200, 1000, 0.05, 1)

15 dftsimp2demo(f, fs, timelen, amp) dftsimp2demo(200, 10000, 0.05, 1)

16 dftcomplex2demo(f1, f2, fs, timelen, a1, a2) dftcomplex2demo(200, 400, 10000, 0.02, 5, 4)

17 dftcomplex2demo(f1, f2, fs, timelen, a1, a2) dftcomplex2demo(200, 400, 10000, 0.02, 5, 4)

18 dftspeech2demo(wavfile, timelen) dftspeech2demo('atest.wav', 0.04)

19 dftspeech2demo(wavfile, timelen) dftspeech2demo('atest.wav', 0.04)

20 Use dB scale and frequencies to F s /2

21 dftspeech2demo(wavfile, timelen) dftspeech2demo(‘itest.wav', 0.04)

22 dftspeech2demo(wavfile, timelen) dftspeech2demo(‘itest.wav', 0.04)

23 DFT Procedure Given the window (frame) length, decide the base frequency Multiply by sine wave at each multiple of base frequency Multiply by cosine wave at each multiple of base frequency Calculate magnitude and phase spectra using

24 Complex Exponential Given the window (frame) length, decide the base frequency Multiply by sine wave at each multiple of base frequency Multiply by cosine wave at each multiple of base frequency Calculate magnitude and phase spectra using

25 Compact Formulae DFT IDFT