32 cerr <<
"The user didn't pick any camera. Exiting." << endl;
38 cout <<
"Press 's' to save frames.\nClose the window to exit.\n";
68 if (o->hasIntensityImage) img = &o->intensityImage;
71 if (img)
win.showImage(*img);
75 double t = tictac.
Tac();
76 cout <<
"Frame Rate: " <<
counter / t <<
" fps" << endl;
90 const std::string sFile =
92 cout <<
"Saving frame to: " << sFile << endl;
101 std::this_thread::sleep_for(2ms);
104 cout <<
"Closing..." << endl;
118 catch (
const std::exception& e)
125 printf(
"Untyped exception!!");
double Tac() noexcept
Stops the stopwatch.
Declares a class derived from "CObservation" that encapsules an image from a camera, whose relative pose to robot is also stored.
CCameraSensor::Ptr prepareVideoSourceFromUserSelection()
Show to the user a list of possible camera drivers and creates and open the selected camera...
int getch() noexcept
An OS-independent version of getch, which waits until a key is pushed.
std::string std::string format(std::string_view fmt, ARGS &&... args)
A high-performance stopwatch, with typical resolution of nanoseconds.
A range or depth 3D scan measurement, as from a time-of-flight range camera or a structured-light dep...
Contains classes for various device interfaces.
#define ASSERT_(f)
Defines an assertion mechanism.
This class creates a window as a graphical user interface (GUI) for displaying images to the user...
Observation class for either a pair of left+right or left+disparity images from a stereo camera...
This namespace contains representation of robot actions and observations.
#define IS_CLASS(obj, class_name)
True if the given reference to object (derived from mrpt::rtti::CObject) is of the given class...
mrpt::gui::CDisplayWindow3D::Ptr win
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
bool kbhit() noexcept
An OS-independent version of kbhit, which returns true if a key has been pushed.
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.
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)...
void Tic() noexcept
Starts the stopwatch.
void TestCameraCaptureAsk()
A class for storing images as grayscale or RGB bitmaps.