Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
9b9afc01
Commit
9b9afc01
authored
Nov 09, 2014
by
Davis King
Browse files
Upgraded fft() and ifft() to support 2D matrices.
parent
e9ad3351
Changes
3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
818 additions
and
188 deletions
+818
-188
dlib/matrix/matrix_fft.h
dlib/matrix/matrix_fft.h
+428
-157
dlib/matrix/matrix_fft_abstract.h
dlib/matrix/matrix_fft_abstract.h
+68
-11
dlib/test/fft.cpp
dlib/test/fft.cpp
+322
-20
No files found.
dlib/matrix/matrix_fft.h
View file @
9b9afc01
This diff is collapsed.
Click to expand it.
dlib/matrix/matrix_fft_abstract.h
View file @
9b9afc01
...
...
@@ -29,19 +29,19 @@ namespace dlib
/*!
requires
- data contains elements of type std::complex<>
- is_
vector(data
) == true
- is_power_of_two(data.
size
()) == true
- is_
power_of_two(data.nr()
) == true
- is_power_of_two(data.
nc
()) == true
ensures
- Computes the discrete Fourier transform of the given data
vector and
returns it. In particular, we return a matrix D such that:
- Computes the
1 or 2 dimensional
discrete Fourier transform of the given data
matrix and
returns it. In particular, we return a matrix D such that:
- D.nr() == data.nr()
- D.nc() == data.nc()
- D(0) == the DC term of the Fourier transform.
- starting with D(0), D contains progressively higher frequency components
- D(0
,0
) == the DC term of the Fourier transform.
- starting with D(0
,0
), D contains progressively higher frequency components
of the input data.
- ifft(D) == D
- if DLIB_USE_FFTW is #defined then this function will use the very fast fftw
library when given
double precision matrice
s instead of dlib's default fft
library when given
matrix<double> object
s instead of dlib's default fft
implementation. Note that you must also link to the fftw3 library to use
this feature.
!*/
...
...
@@ -55,14 +55,71 @@ namespace dlib
/*!
requires
- data contains elements of type std::complex<>
- is_
vector(data
) == true
- is_power_of_two(data.
size
()) == true
- is_
power_of_two(data.nr()
) == true
- is_power_of_two(data.
nc
()) == true
ensures
- Computes the inverse discrete Fourier transform of the given data vector and
returns it. In particular, we return a matrix D such that:
- Computes the 1 or 2 dimensional inverse discrete Fourier transform of the
given data vector and returns it. In particular, we return a matrix D such
that:
- D.nr() == data.nr()
- D.nc() == data.nc()
- fft(D) == data
- if DLIB_USE_FFTW is #defined then this function will use the very fast fftw
library when given matrix<double> objects instead of dlib's default fft
implementation. Note that you must also link to the fftw3 library to use
this feature.
!*/
// ----------------------------------------------------------------------------------------
template
<
typename
T
,
long
NR
,
long
NC
,
typename
MM
,
typename
L
>
void
fft_inplace
(
matrix
<
std
::
complex
<
T
>
,
NR
,
NC
,
MM
,
L
>&
data
);
/*!
requires
- data contains elements of type std::complex<>
- is_power_of_two(data.nr()) == true
- is_power_of_two(data.nc()) == true
ensures
- This function is identical to fft() except that it does the FFT in-place.
That is, after this function executes we will have:
- #data == fft(data)
- if DLIB_USE_FFTW is #defined then this function will use the very fast fftw
library when given double precision matrices instead of dlib's default fft
implementation. Note that you must also link to the fftw3 library to use
this feature.
!*/
// ----------------------------------------------------------------------------------------
template
<
typename
T
,
long
NR
,
long
NC
,
typename
MM
,
typename
L
>
void
ifft_inplace
(
matrix
<
std
::
complex
<
T
>
,
NR
,
NC
,
MM
,
L
>&
data
);
/*!
requires
- data contains elements of type std::complex<>
- is_power_of_two(data.nr()) == true
- is_power_of_two(data.nc()) == true
ensures
- This function is identical to ifft() except that it does the inverse FFT
in-place. That is, after this function executes we will have:
- #data == ifft(data)*data.size()
- Note that the output needs to be divided by data.size() to complete the
inverse transformation.
- if DLIB_USE_FFTW is #defined then this function will use the very fast fftw
library when given double precision matrices instead of dlib's default fft
implementation. Note that you must also link to the fftw3 library to use
...
...
dlib/test/fft.cpp
View file @
9b9afc01
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment