MRPT
2.0.1
|
Functions | |
void | mrpt::math::fft_real (CVectorFloat &in_realData, CVectorFloat &out_FFT_Re, CVectorFloat &out_FFT_Im, CVectorFloat &out_FFT_Mag) |
Computes the FFT of a 2^N-size vector of real numbers, and returns the Re+Im+Magnitude parts. More... | |
void | mrpt::math::dft2_real (const CMatrixFloat &in_data, CMatrixFloat &out_real, CMatrixFloat &out_imag) |
Compute the 2D Discrete Fourier Transform (DFT) of a real matrix, returning the real and imaginary parts separately. More... | |
void | mrpt::math::idft2_real (const CMatrixFloat &in_real, const CMatrixFloat &in_imag, CMatrixFloat &out_data) |
Compute the 2D inverse Discrete Fourier Transform (DFT) More... | |
void | mrpt::math::dft2_complex (const CMatrixFloat &in_real, const CMatrixFloat &in_imag, CMatrixFloat &out_real, CMatrixFloat &out_imag) |
Compute the 2D Discrete Fourier Transform (DFT) of a complex matrix, returning the real and imaginary parts separately. More... | |
void | mrpt::math::idft2_complex (const CMatrixFloat &in_real, const CMatrixFloat &in_imag, CMatrixFloat &out_real, CMatrixFloat &out_imag) |
Compute the 2D inverse Discrete Fourier Transform (DFT). More... | |
void | mrpt::math::cross_correlation_FFT (const CMatrixFloat &A, const CMatrixFloat &B, CMatrixFloat &out_corr) |
Correlation of two matrixes using 2D FFT. More... | |
void mrpt::math::cross_correlation_FFT | ( | const CMatrixFloat & | A, |
const CMatrixFloat & | B, | ||
CMatrixFloat & | out_corr | ||
) |
Correlation of two matrixes using 2D FFT.
Definition at line 1446 of file fourier.cpp.
References ASSERT_, mrpt::math::CMatrixDynamic< T >::cols(), mrpt::math::dft2_complex(), mrpt::math::idft2_complex(), MRPT_END, MRPT_START, mrpt::round2up(), mrpt::math::CMatrixDynamic< T >::rows(), mrpt::math::CMatrixDynamic< T >::setSize(), mrpt::square(), and THROW_EXCEPTION.
void mrpt::math::dft2_complex | ( | const CMatrixFloat & | in_real, |
const CMatrixFloat & | in_imag, | ||
CMatrixFloat & | out_real, | ||
CMatrixFloat & | out_imag | ||
) |
Compute the 2D Discrete Fourier Transform (DFT) of a complex matrix, returning the real and imaginary parts separately.
in_real | The N_1xN_2 matrix with the real part. |
in_imag | The N_1xN_2 matrix with the imaginary part. |
out_real | The N_1xN_2 output matrix which will store the real values (user has not to initialize the size of this matrix). |
out_imag | The N_1xN_2 output matrix which will store the imaginary values (user has not to initialize the size of this matrix). If the dimensions of the matrix are powers of two, the fast fourier transform (FFT) is used instead of the general algorithm. |
Definition at line 1227 of file fourier.cpp.
References ASSERT_, mrpt::math::cdft2d(), mrpt::math::CMatrixDynamic< T >::cols(), MRPT_END, MRPT_START, myGeneralDFT(), mrpt::round2up(), mrpt::math::CMatrixDynamic< T >::rows(), and mrpt::math::CMatrixDynamic< T >::setSize().
Referenced by mrpt::math::cross_correlation_FFT(), and mrpt::img::CImage::cross_correlation_FFT().
void mrpt::math::dft2_real | ( | const CMatrixFloat & | in_data, |
CMatrixFloat & | out_real, | ||
CMatrixFloat & | out_imag | ||
) |
Compute the 2D Discrete Fourier Transform (DFT) of a real matrix, returning the real and imaginary parts separately.
in_data | The N_1xN_2 matrix. |
out_real | The N_1xN_2 output matrix which will store the real values (user has not to initialize the size of this matrix). |
out_imag | The N_1xN_2 output matrix which will store the imaginary values (user has not to initialize the size of this matrix). |
Definition at line 968 of file fourier.cpp.
References mrpt::math::CMatrixDynamic< T >::cols(), MRPT_END, MRPT_START, mrpt::math::rdft2d(), mrpt::math::CMatrixDynamic< T >::rows(), and mrpt::math::CMatrixDynamic< T >::setSize().
void mrpt::math::fft_real | ( | CVectorFloat & | in_realData, |
CVectorFloat & | out_FFT_Re, | ||
CVectorFloat & | out_FFT_Im, | ||
CVectorFloat & | out_FFT_Mag | ||
) |
Computes the FFT of a 2^N-size vector of real numbers, and returns the Re+Im+Magnitude parts.
Definition at line 927 of file fourier.cpp.
References mrpt::system::os::memcpy(), MRPT_END, MRPT_START, mrpt::math::realft(), mrpt::math::CVectorDynamic< T >::resize(), mrpt::math::CVectorDynamic< T >::size(), and mrpt::square().
void mrpt::math::idft2_complex | ( | const CMatrixFloat & | in_real, |
const CMatrixFloat & | in_imag, | ||
CMatrixFloat & | out_real, | ||
CMatrixFloat & | out_imag | ||
) |
Compute the 2D inverse Discrete Fourier Transform (DFT).
in_real | The N_1xN_2 input matrix with real values, where both dimensions MUST BE powers of 2. |
in_imag | The N_1xN_2 input matrix with imaginary values, where both dimensions MUST BE powers of 2. |
out_real | The N_1xN_2 output matrix for real part (user has not to initialize the size of this matrix). |
out_imag | The N_1xN_2 output matrix for imaginary part (user has not to initialize the size of this matrix). |
Definition at line 1332 of file fourier.cpp.
References mrpt::math::CMatrixDynamic< T >::asEigen(), ASSERT_, mrpt::math::cdft2d(), mrpt::math::CMatrixDynamic< T >::cols(), MRPT_END, MRPT_START, myGeneralDFT(), mrpt::round2up(), mrpt::math::CMatrixDynamic< T >::rows(), and mrpt::math::CMatrixDynamic< T >::setSize().
Referenced by mrpt::math::cross_correlation_FFT(), and mrpt::img::CImage::cross_correlation_FFT().
void mrpt::math::idft2_real | ( | const CMatrixFloat & | in_real, |
const CMatrixFloat & | in_imag, | ||
CMatrixFloat & | out_data | ||
) |
Compute the 2D inverse Discrete Fourier Transform (DFT)
in_real | The N_1xN_2 input matrix with real values. |
in_imag | The N_1xN_2 input matrix with imaginary values. |
out_data | The N_1xN_2 output matrix (user has not to initialize the size of this matrix). Note that the real and imaginary parts of the FFT will NOT be checked to assure that they represent the transformation of purely real data. If the dimensions of the matrix are powers of two, the fast fourier transform (FFT) is used instead of the general algorithm. |
Definition at line 1068 of file fourier.cpp.
References ASSERT_, mrpt::math::CMatrixDynamic< T >::cols(), MRPT_END, MRPT_START, mrpt::math::rdft2d(), mrpt::round2up(), mrpt::math::CMatrixDynamic< T >::rows(), mrpt::math::CMatrixDynamic< T >::setSize(), and THROW_EXCEPTION.
Page generated by Doxygen 1.8.14 for MRPT 2.0.1 Git: 0fef1a6d7 Fri Apr 3 23:00:21 2020 +0200 at vie abr 3 23:20:28 CEST 2020 |