22 #include <mrpt/examples_config.h> 24 MRPT_EXAMPLES_BASE_DIRECTORY + string(
"vision_checkerboard_detectors/");
36 throw std::runtime_error(
"Can't load demo image!");
39 vector<TPixelCoordf> cornerCoords;
40 const unsigned int checkerboard_size_x = 6;
41 const unsigned int checkerboard_size_y = 9;
44 timlog.
enter(
"findChessboardCorners [OpenCV]");
48 img, cornerCoords, checkerboard_size_x, checkerboard_size_y,
53 timlog.
leave(
"findChessboardCorners [OpenCV]");
58 cornerCoords, checkerboard_size_x, checkerboard_size_y);
60 timlog.
enter(
"findChessboardCorners [Scaramuzza]");
64 img, cornerCoords, checkerboard_size_x, checkerboard_size_y,
69 timlog.
leave(
"findChessboardCorners [Scaramuzza]");
74 cornerCoords, checkerboard_size_x, checkerboard_size_y);
80 win1.showImage(img_detect1);
83 win2.showImage(img_detect2);
89 while (win1.isOpen() && win2.isOpen())
91 std::this_thread::sleep_for(10ms);
105 catch (
const std::exception& e)
112 printf(
"Untyped exception!!");
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.
void clear(bool deep_clear=false)
Resets all stats.
void dumpAllStats(const size_t column_width=80) const
Dump all stats through the COutputLogger interface.
bool loadFromFile(const std::string &fileName, int isColor=-1)
Load image from a file, whose format is determined from the extension (internally uses OpenCV)...
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...
Classes for creating GUI windows for 2D and 3D visualization.
A class for storing images as grayscale or RGB bitmaps.