Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 329 Bytes

readme.md

File metadata and controls

8 lines (6 loc) · 329 Bytes

Image Fourier transform

Several C++ implementations of 2D FT: - brute-force; - Cooley–Tukey FFT: recursive and no-recursive bit-reversal versions; - Stockham FFT.

This is not a production code, the aim was to better understand the differences between the algorithms and compare their performance by myself.