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 
11 #include <mrpt/math/CMatrixF.h>
12 #include <mrpt/system/CTicTac.h>
14 #include <iostream>
15 
16 using namespace mrpt;
17 using namespace mrpt::gui;
18 using namespace mrpt::img;
19 using namespace mrpt::math;
20 using namespace mrpt::system;
21 using namespace std;
22 
23 #include <mrpt/examples_config.h>
24 string myDataDir(MRPT_EXAMPLES_BASE_DIRECTORY + string("img_basic_example/"));
25 
26 // ------------------------------------------------------
27 // TestImageCap
28 // ------------------------------------------------------
30 {
31  // BMP -> JPEG conversion tester:
32  // --------------------------------
33  CImage img;
34  CTicTac tictac;
35  CTimeLogger timlog;
36 
37  tictac.Tic();
38  if (!img.loadFromFile(myDataDir + string("frame_color.jpg")))
39  {
40  cerr << "Cannot load " << myDataDir + string("frame_color.jpg") << endl;
41  return;
42  }
43  printf("Image loaded in %.03fms\n", 1000 * tictac.Tac());
44 
45  if (false) // A very simple test:
46  {
47  CDisplayWindow win1("JPEG file, color");
48  win1.setPos(10, 10);
49 
50  win1.showImage(img);
51 
52  cout << "Push a key in the console or in the window to continue...";
53  win1.waitForKey();
54  cout << "Done" << endl;
55 
56  timlog.enter("grayscale1");
57  img = img.grayscale();
58  timlog.leave("grayscale1");
59 
60  CDisplayWindow win2("JPEG file, gray");
61  win2.showImage(img);
62  win1.setPos(300, 10);
63 
64  cout << "Push a key in the console or in the window to continue...";
65  win2.waitForKey();
66  cout << "Done" << endl;
67 
69  return;
70  }
71 
72  CDisplayWindow win1("win1"), win2("win2"), win3("win3"), win4("win4");
73 
74  CImage imgSmall(img);
75  CImage imgGray;
76 
77  for (int i = 0; i < 50; i++)
78  {
79  timlog.enter("grayscale2");
80  imgSmall.grayscale(imgGray);
81  timlog.leave("grayscale2");
82  }
83 
84  CImage imgSmall2 = imgGray.scaleHalf(IMG_INTERP_LINEAR);
85  CImage imgSmallRGB = img.scaleHalf(IMG_INTERP_LINEAR);
86 
87  // Test some draw capabilities:
88  // ---------------------------------
89  imgSmall.rectangle(85, 35, 170, 170, TColor(255, 0, 0), 10);
90 
91  imgSmall.line(550, 75, 650, 25, TColor(0, 0, 255));
92  imgSmall.line(-10, -20, 20, 30, TColor(0, 0, 255));
93 
94  CMatrixDouble22 COV;
95  COV(0, 0) = 100;
96  COV(1, 1) = 50;
97  COV(0, 1) = COV(1, 0) = -30;
98  imgSmall.ellipseGaussian(COV, 600.0, 50.0, 2, TColor(255, 255, 0), 4);
99  imgGray.ellipseGaussian(COV, 100.0, 100.0, 2, TColor(0, 0, 255), 4);
100 
101  imgGray.drawImage(50, 40, imgSmall2);
102 
103  // Show the windows now:
104  // ------------------------------------------------------
105  win1.showImage(imgSmall);
106  win1.setPos(0, 0);
107  win2.showImage(imgSmall2);
108  win2.setPos(810, 0);
109  win3.showImage(imgGray);
110  win3.setPos(810, 300);
111  win4.showImage(imgSmallRGB);
112  win4.setPos(300, 400);
113 
114  cout << "Press any key on 'win4' to exit" << endl;
115  win4.waitForKey();
116 
117  tictac.Tic();
118  imgGray.saveToFile("frame_out.jpg");
119  printf("jpeg file saved in %.03fms\n", 1000.0 * tictac.Tac());
120 
121  imgSmall2.saveToFile("frame_out_small.png");
122 
123  return;
124 }
125 
126 // ------------------------------------------------------
127 // MAIN
128 // ------------------------------------------------------
129 int main()
130 {
131  try
132  {
134  return 0;
135  }
136  catch (const std::exception& e)
137  {
138  std::cerr << "MRPT error: " << mrpt::exception_to_str(e) << std::endl;
139  return -1;
140  }
141  catch (...)
142  {
143  printf("Untyped exception!!");
144  return -1;
145  }
146 }
double Tac() noexcept
Stops the stopwatch.
Definition: CTicTac.cpp:86
A compile-time fixed-size numeric matrix container.
Definition: CMatrixFixed.h:33
CImage scaleHalf(TInterpolationMethod interp) const
Returns a new image scaled down to half its original size.
Definition: img/CImage.h:314
void drawImage(int x, int y, const mrpt::img::CImage &img) override
Draws an image as a bitmap at a given position.
Definition: CImage.cpp:1142
A high-performance stopwatch, with typical resolution of nanoseconds.
std::string myDataDir
STL namespace.
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.
This class creates a window as a graphical user interface (GUI) for displaying images to the user...
void rectangle(int x0, int y0, int x1, int y1, const mrpt::img::TColor color, unsigned int width=1)
Draws a rectangle (an empty rectangle, without filling)
Definition: CCanvas.cpp:161
void ellipseGaussian(const mrpt::math::CMatrixFixed< double, 2, 2 > &cov2D, const double mean_x, const double mean_y, double confIntervalStds=2, const mrpt::img::TColor &color=mrpt::img::TColor(255, 255, 255), unsigned int width=1, int nEllipsePoints=20)
Draws an ellipse representing a given confidence interval of a 2D Gaussian distribution.
Definition: CCanvas.cpp:452
CImage grayscale() const
Returns a grayscale version of the image, or a shallow copy of itself if it is already a grayscale im...
Definition: CImage.cpp:933
void pause(const std::string &msg=std::string("Press any key to continue...")) noexcept
Shows the message "Press any key to continue" (or other custom message) to the current standard outpu...
Definition: os.cpp:430
void enter(const std::string_view &func_name) noexcept
Start of a named section.
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
A versatile "profiler" that logs the time spent within each pair of calls to enter(X)-leave(X), among other stats.
double leave(const std::string_view &func_name) noexcept
End of a named section.
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
bool saveToFile(const std::string &fileName, int jpeg_quality=95) const
Save the image to a file, whose format is determined from the extension (internally uses OpenCV)...
Definition: CImage.cpp:330
A RGB color - 8bit.
Definition: TColor.h:25
void Tic() noexcept
Starts the stopwatch.
Definition: CTicTac.cpp:75
void TestImageConversion()
A class for storing images as grayscale or RGB bitmaps.
Definition: img/CImage.h:148



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