24 #include <mrpt/examples_config.h> 26 MRPT_EXAMPLES_BASE_DIRECTORY +
27 string(
"img_correlation_example/"));
37 printf(
"Loading matrix from file...");
38 A.loadFromTextFile(
"dft2_test.txt");
42 "Computing 2D FFT of %ux%u...", (
unsigned int)
A.rows(),
43 (
unsigned int)
A.cols());
46 printf(
" Done,%.06fms\n", tictac.
Tac() * 1000.0f);
52 "Computing 2D IFFT of %ux%u...", (
unsigned int)
A.rows(),
53 (
unsigned int)
A.cols());
56 printf(
" Done,%.06fms\n", tictac.
Tac() * 1000.0f);
63 const float maxError = D.maxCoeff(u, v);
65 printf(
"Maximum error between 'A' and 'IFFT(FFT(A))'=%e\n", maxError);
73 CMatrixF DATA_R, DATA_I, RES_R, RES_I, B_R, B_I, D_R, D_I;
76 printf(
"Loading matrix from file...");
82 "Computing 2D complex FFT of %ux%u...", (
unsigned int)DATA_R.
rows(),
83 (
unsigned int)DATA_R.
cols());
86 printf(
" Done,%.06fms\n", tictac.
Tac() * 1000.0f);
92 "Computing 2D complex IFFT of %ux%u...", (
unsigned int)DATA_R.
rows(),
93 (
unsigned int)DATA_R.
cols());
96 printf(
" Done,%.06fms\n", tictac.
Tac() * 1000.0f);
104 const float maxError_R = D_R.
maxCoeff(u, v);
105 const float maxError_I = D_I.
maxCoeff(u, v);
107 printf(
"Maximum error between 'A' and 'IFFT(FFT(A))'=%e\n", maxError_R);
108 printf(
"Maximum error between 'A' and 'IFFT(FFT(A))'=%e\n", maxError_I);
121 myDataDir +
string(
"fft2_test_image_patch.jpg"), 0);
123 myDataDir +
string(
"fft2_test_image.jpg"), 0);
125 printf(
"Computing images correlation...");
128 printf(
" Done,%.06fms\n", tictac.
Tac() * 1000.0f);
141 catch (
const std::exception& e)
148 printf(
"Untyped exception!!");
Scalar maxCoeff() const
Maximum value in the matrix/vector.
double Tac() noexcept
Stops the stopwatch.
void 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 pa...
A high-performance stopwatch, with typical resolution of nanoseconds.
void saveToTextFile(const std::string &file, mrpt::math::TMatrixTextFileFormat fileFormat=mrpt::math::MATRIX_FORMAT_ENG, bool appendMRPTHeader=false, const std::string &userHeader=std::string()) const
Saves the vector/matrix to a file compatible with MATLAB/Octave text format.
bool loadFromFile(const std::string &fileName, int isColor=-1)
Load image from a file, whose format is determined from the extension (internally uses OpenCV)...
This base provides a set of functions for maths stuff.
size_type rows() const
Number of rows in the matrix.
size_type cols() const
Number of columns in the matrix.
void cross_correlation_FFT(const CImage &in_img, math::CMatrixFloat &out_corr, int u_search_ini=-1, int v_search_ini=-1, int u_search_size=-1, int v_search_size=-1, float biasThisImg=0, float biasInImg=0) const
Computes the correlation matrix between this image and another one.
void idft2_complex(const CMatrixFloat &in_real, const CMatrixFloat &in_imag, CMatrixFloat &out_real, CMatrixFloat &out_imag)
Compute the 2D inverse Discrete Fourier Transform (DFT).
This class is a "CSerializable" wrapper for "CMatrixFloat".
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
void idft2_real(const CMatrixFloat &in_real, const CMatrixFloat &in_imag, CMatrixFloat &out_data)
Compute the 2D inverse Discrete Fourier Transform (DFT)
void TestFFT_2D_complex()
std::string exception_to_str(const std::exception &e)
Builds a nice textual representation of a nested exception, which if generated using MRPT macros (THR...
Classes for creating GUI windows for 2D and 3D visualization.
void Tic() noexcept
Starts the stopwatch.
void 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...
A class for storing images as grayscale or RGB bitmaps.
void loadFromTextFile(std::istream &f)
Loads a vector/matrix from a text file, compatible with MATLAB text format.