MRPT  2.0.1
test.cpp
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | https://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2020, Individual contributors, see AUTHORS file |
6  | See: https://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See: https://www.mrpt.org/License |
8  +------------------------------------------------------------------------+ */
9 
10 #include <mrpt/gui.h>
11 #include <mrpt/img/CImage.h>
12 #include <mrpt/math/CMatrixF.h>
13 #include <mrpt/math/fourier.h>
14 #include <mrpt/system/CTicTac.h>
15 #include <iostream>
16 
17 using namespace mrpt;
18 using namespace mrpt::math;
19 using namespace mrpt::gui;
20 using namespace mrpt::system;
21 using namespace mrpt::img;
22 using namespace std;
23 
24 #include <mrpt/examples_config.h>
25 string myDataDir(
26  MRPT_EXAMPLES_BASE_DIRECTORY +
27  string("img_correlation_example/")); // Reuse it's images
28 
29 // ------------------------------------------------------
30 // TestFFT_2D_real
31 // ------------------------------------------------------
32 void TestFFT_2D_real()
33 {
34  CMatrixF A, RES_R, RES_I, B, D;
35  CTicTac tictac;
36 
37  printf("Loading matrix from file...");
38  A.loadFromTextFile("dft2_test.txt");
39  printf("ok\n");
40 
41  printf(
42  "Computing 2D FFT of %ux%u...", (unsigned int)A.rows(),
43  (unsigned int)A.cols());
44  tictac.Tic();
45  math::dft2_real(A, RES_R, RES_I);
46  printf(" Done,%.06fms\n", tictac.Tac() * 1000.0f);
47 
48  RES_R.saveToTextFile("_out_dft2_real.txt");
49  RES_I.saveToTextFile("_out_dft2_imag.txt");
50 
51  printf(
52  "Computing 2D IFFT of %ux%u...", (unsigned int)A.rows(),
53  (unsigned int)A.cols());
54  tictac.Tic();
55  math::idft2_real(RES_R, RES_I, B);
56  printf(" Done,%.06fms\n", tictac.Tac() * 1000.0f);
57 
58  // B.saveToTextFile("_out_ifft2.txt");
59  D = B - A;
60  // D.saveToTextFile("_out_dft2_error_diffs.txt");
61 
62  size_t u, v;
63  const float maxError = D.maxCoeff(u, v);
64 
65  printf("Maximum error between 'A' and 'IFFT(FFT(A))'=%e\n", maxError);
66 }
67 
68 // ------------------------------------------------------
69 // TestFFT_2D_complex
70 // ------------------------------------------------------
71 void TestFFT_2D_complex()
72 {
73  CMatrixF DATA_R, DATA_I, RES_R, RES_I, B_R, B_I, D_R, D_I;
74  CTicTac tictac;
75 
76  printf("Loading matrix from file...");
77  DATA_R.loadFromTextFile("complex_dft2_test_real.txt");
78  DATA_I.loadFromTextFile("complex_dft2_test_imag.txt");
79  printf("ok\n");
80 
81  printf(
82  "Computing 2D complex FFT of %ux%u...", (unsigned int)DATA_R.rows(),
83  (unsigned int)DATA_R.cols());
84  tictac.Tic();
85  math::dft2_complex(DATA_R, DATA_I, RES_R, RES_I);
86  printf(" Done,%.06fms\n", tictac.Tac() * 1000.0f);
87 
88  RES_R.saveToTextFile("_out_complex_dft2_real.txt");
89  RES_I.saveToTextFile("_out_complex_dft2_imag.txt");
90 
91  printf(
92  "Computing 2D complex IFFT of %ux%u...", (unsigned int)DATA_R.rows(),
93  (unsigned int)DATA_R.cols());
94  tictac.Tic();
95  math::idft2_complex(RES_R, RES_I, B_R, B_I);
96  printf(" Done,%.06fms\n", tictac.Tac() * 1000.0f);
97 
98  // B.saveToTextFile("_out_ifft2.txt");
99  D_R = B_R - DATA_R;
100  D_I = B_I - DATA_I;
101  // D.saveToTextFile("_out_dft2_error_diffs.txt");
102 
103  size_t u, v;
104  const float maxError_R = D_R.maxCoeff(u, v);
105  const float maxError_I = D_I.maxCoeff(u, v);
106 
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);
109 }
110 
111 // ------------------------------------------------------
112 // TestImageFFT
113 // ------------------------------------------------------
114 void TestImageFFT()
115 {
116  CTicTac tictac;
117  CImage IM1, IM2;
118  CMatrixF imgCorr;
119 
120  IM1.loadFromFile(
121  myDataDir + string("fft2_test_image_patch.jpg"), 0); // "Patch"
122  IM2.loadFromFile(
123  myDataDir + string("fft2_test_image.jpg"), 0); // Ref. image
124 
125  printf("Computing images correlation...");
126  tictac.Tic();
127  IM2.cross_correlation_FFT(IM1, imgCorr);
128  printf(" Done,%.06fms\n", tictac.Tac() * 1000.0f);
129 
130  imgCorr.saveToTextFile("_out_dft2_image_test.txt");
131 }
132 
133 int main()
134 {
135  try
136  {
137  TestImageFFT();
138 
139  return 0;
140  }
141  catch (const std::exception& e)
142  {
143  std::cerr << "MRPT error: " << mrpt::exception_to_str(e) << std::endl;
144  return -1;
145  }
146  catch (...)
147  {
148  printf("Untyped exception!!");
149  return -1;
150  }
151 }
Scalar maxCoeff() const
Maximum value in the matrix/vector.
double Tac() noexcept
Stops the stopwatch.
Definition: CTicTac.cpp:86
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...
Definition: fourier.cpp:968
A high-performance stopwatch, with typical resolution of nanoseconds.
std::string myDataDir
STL namespace.
void TestImageFFT()
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.
void TestFFT_2D_real()
bool loadFromFile(const std::string &fileName, int isColor=-1)
Load image from a file, whose format is determined from the extension (internally uses OpenCV)...
Definition: CImage.cpp:305
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.
Definition: CImage.cpp:1435
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).
Definition: fourier.cpp:1332
This class is a "CSerializable" wrapper for "CMatrixFloat".
Definition: CMatrixF.h:22
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)
Definition: fourier.cpp:1068
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...
Definition: exceptions.cpp:59
Classes for creating GUI windows for 2D and 3D visualization.
Definition: about_box.h:14
void Tic() noexcept
Starts the stopwatch.
Definition: CTicTac.cpp:75
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...
Definition: fourier.cpp:1227
A class for storing images as grayscale or RGB bitmaps.
Definition: img/CImage.h:148
void loadFromTextFile(std::istream &f)
Loads a vector/matrix from a text file, compatible with MATLAB text format.



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