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>
14 #include <iostream>
15 
16 using namespace std;
17 using namespace mrpt;
18 using namespace mrpt::img;
19 using namespace mrpt::system;
20 using namespace mrpt::gui;
21 
22 #include <mrpt/examples_config.h>
23 std::string myDataDir =
24  MRPT_EXAMPLES_BASE_DIRECTORY + string("vision_checkerboard_detectors/");
25 
26 // ------------------------------------------------------
27 // TestCheckerboardDetectors
28 // ------------------------------------------------------
30 {
31  CTimeLogger timlog;
32 
33  // Load img:
34  CImage img;
35  if (!img.loadFromFile(myDataDir + string("test_1_checkerboard_9x6.jpg")))
36  throw std::runtime_error("Can't load demo image!");
37 
38  // Detect multiple-checkerboards:
39  vector<TPixelCoordf> cornerCoords;
40  const unsigned int checkerboard_size_x = 6;
41  const unsigned int checkerboard_size_y = 9;
42 
43  // Detect:
44  timlog.enter("findChessboardCorners [OpenCV]");
45 
46  // bool detectOk1 =
48  img, cornerCoords, checkerboard_size_x, checkerboard_size_y,
49  true, // normalize_image
50  false // useScaramuzzaMethod
51  );
52 
53  timlog.leave("findChessboardCorners [OpenCV]");
54 
55  // Draw:
56  CImage img_detect1 = img;
57  img_detect1.drawChessboardCorners(
58  cornerCoords, checkerboard_size_x, checkerboard_size_y);
59 
60  timlog.enter("findChessboardCorners [Scaramuzza]");
61 
62  // bool detectOk2 =
64  img, cornerCoords, checkerboard_size_x, checkerboard_size_y,
65  true, // normalize_image
66  true // useScaramuzzaMethod
67  );
68 
69  timlog.leave("findChessboardCorners [Scaramuzza]");
70 
71  // Draw:
72  CImage img_detect2 = img;
73  img_detect2.drawChessboardCorners(
74  cornerCoords, checkerboard_size_x, checkerboard_size_y);
75 
76  // ASSERT_(detectOk1 && detectOk2);
77 
78  // Show results:
79  CDisplayWindow win1("Detected checkerboard (OpenCV)");
80  win1.showImage(img_detect1);
81 
82  CDisplayWindow win2("Detected checkerboard (Scaramuzza)");
83  win2.showImage(img_detect2);
84 
85  timlog.dumpAllStats();
86  timlog.clear();
87 
88  // wait till user closes any window:
89  while (win1.isOpen() && win2.isOpen())
90  {
91  std::this_thread::sleep_for(10ms);
92  }
93 }
94 
95 // ------------------------------------------------------
96 // MAIN
97 // ------------------------------------------------------
98 int main()
99 {
100  try
101  {
103  return 0;
104  }
105  catch (const std::exception& e)
106  {
107  std::cerr << "MRPT error: " << mrpt::exception_to_str(e) << std::endl;
108  return -1;
109  }
110  catch (...)
111  {
112  printf("Untyped exception!!");
113  return -1;
114  }
115 }
bool drawChessboardCorners(std::vector< TPixelCoordf > &cornerCoords, unsigned int check_size_x, unsigned int check_size_y, unsigned int lines_width=1, unsigned int circles_radius=4)
Draw onto this image the detected corners of a chessboard.
Definition: CImage.cpp:1799
void clear(bool deep_clear=false)
Resets all stats.
Definition: CTimeLogger.cpp:82
void dumpAllStats(const size_t column_width=80) const
Dump all stats through the COutputLogger interface.
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
void TestCheckerboardDetectors()
This class creates a window as a graphical user interface (GUI) for displaying images to the user...
bool findChessboardCorners(const mrpt::img::CImage &img, std::vector< mrpt::img::TPixelCoordf > &cornerCoords, unsigned int check_size_x, unsigned int check_size_y, bool normalize_image=true, bool useScaramuzzaMethod=false)
Look for the corners of a chessboard in the image using one of two different methods.
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
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