23 #include <mrpt/examples_config.h> 25 MRPT_EXAMPLES_BASE_DIRECTORY + string(
"vision_multiple_checkerboards/");
31 const std::string& img_filename,
const unsigned int checkerboard_size_x,
32 const unsigned int checkerboard_size_y)
39 throw std::runtime_error(
"Can't load image!");
42 vector<vector<TPixelCoordf>> listCornerCoords;
44 timlog.
enter(
"findMultipleChessboardsCorners");
47 img, listCornerCoords, checkerboard_size_x, checkerboard_size_y);
49 timlog.
leave(
"findMultipleChessboardsCorners");
51 cout <<
"Number of checkerboards detected: " << listCornerCoords.size()
57 for (
size_t i = 0; i < listCornerCoords.size(); i++)
59 listCornerCoords[i], checkerboard_size_x, checkerboard_size_y);
63 win1.showImage(img_detect);
79 std::string sFile =
myDataDir + string(
"test_3_checkerboards_5x4.jpg");
80 unsigned int checkerboard_size_x = 5;
81 unsigned int checkerboard_size_y = 4;
85 sFile = std::string(
argv[1]);
86 checkerboard_size_x = atoi(
argv[2]);
87 checkerboard_size_y = atoi(
argv[3]);
91 std::cerr <<
"Usage: " <<
argv[0] <<
" [IMAGE_FILE NX NY]\n";
96 sFile, checkerboard_size_x, checkerboard_size_y);
99 catch (
const std::exception& e)
106 printf(
"Untyped exception!!");
void findMultipleChessboardsCorners(const mrpt::img::CImage &img, std::vector< std::vector< mrpt::img::TPixelCoordf >> &cornerCoords, unsigned int check_size_x, unsigned int check_size_y)
Look for the corners of one or more chessboard/checkerboards in the image.
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.
CImage colorImage() const
Returns a color (RGB) version of the grayscale image, or a shallow copy of itself if it is already a ...
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 class creates a window as a graphical user interface (GUI) for displaying images to the user...
Classes for computer vision, detectors, features, etc.
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.
void TestMultipleCheckerboard(const std::string &img_filename, const unsigned int checkerboard_size_x, const unsigned int checkerboard_size_y)
A class for storing images as grayscale or RGB bitmaps.