32 if (
argc == 1 || ((
argc - 1) & 1) != 0)
35 <<
argv[0] <<
"left_image1 right_image1 [L2 R2] [L3 R3] [...]\n";
55 const size_t nPairs = (
argc >> 1);
56 for (
size_t i = 0; i < nPairs; i++)
58 const string sImgL =
argv[1 + 2 * i + 0];
59 const string sImgR =
argv[1 + 2 * i + 1];
63 calib_imgs.resize(calib_imgs.size() + 1);
81 calib_imgs, calib_params, calib_result);
85 std::cout <<
"Calibration returned an error status.\n";
100 win.get3DSceneAndLock();
101 view1 = scene->getViewport(
"main");
102 view2 = scene->createViewport(
"right");
105 view1->setViewportPosition(0, 0, 0.5, 1.0);
106 view2->setViewportPosition(0.5, 0, 0.5, 1.0);
108 win.unlockAccess3DScene();
111 for (
size_t i = 0; i < nPairs; i++)
113 win.get3DSceneAndLock();
116 calib_imgs[i].left.img_rectified);
118 calib_imgs[i].right.img_rectified);
121 "Detected corners: %u / %u",
122 static_cast<unsigned int>(i + 1),
123 static_cast<unsigned int>(nPairs)));
125 win.unlockAccess3DScene();
145 catch (
const std::exception& e)
152 printf(
"Untyped exception!!");
bool optimize_k1
Select which distortion parameters (of both left/right cameras) will be optimzed: k1...
std::string std::string format(std::string_view fmt, ARGS &&... args)
Data associated to each stereo image in the calibration process mrpt::vision::checkerBoardCameraCalib...
unsigned int check_size_y
void setExternalStorage(const std::string &fileName) noexcept
By using this method the image is marked as referenced to an external file, which will be loaded only...
double check_squares_length_X_meters
The size of each square in the checkerboard, in meters, in the "X" & Y" axes.
bool loadFromFile(const std::string &fileName, int isColor=-1)
Load image from a file, whose format is determined from the extension (internally uses OpenCV)...
Input parameters for mrpt::vision::checkerBoardStereoCalibration.
Classes for computer vision, detectors, features, etc.
mrpt::gui::CDisplayWindow3D::Ptr win
unsigned int check_size_x
The number of squares in the checkerboard in the "X" & "Y" direction.
bool checkerBoardStereoCalibration(TCalibrationStereoImageList &images, const TStereoCalibParams ¶ms, TStereoCalibResults &out_results)
Optimize the calibration parameters of a stereo camera or a RGB+D (Kinect) camera.
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.
int TestStereoCalibrate(int argc, char **argv)
The namespace for 3D scene representation and rendering.
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.
double check_squares_length_Y_meters
Output results for mrpt::vision::checkerBoardStereoCalibration.
#define ASSERT_FILE_EXISTS_(FIL)
#define THROW_EXCEPTION_FMT(_FORMAT_STRING,...)
mrpt::img::CImage img_original
This image will be automatically loaded from the file name passed to checkerBoardCameraCalibration.
std::vector< TImageStereoCalibData > TCalibrationStereoImageList
A list of images, used in checkerBoardStereoCalibration.
A graphical user interface (GUI) for efficiently rendering 3D scenes in real-time.