54 bool _is_online,
const string& _rawlog_file =
string(),
55 bool _generate_3D_pointcloud_in_this_thread =
false)
56 : is_online(_is_online),
57 rawlog_file(_rawlog_file),
58 generate_3D_pointcloud_in_this_thread(
59 _generate_3D_pointcloud_in_this_thread),
68 const string rawlog_file;
71 const bool generate_3D_pointcloud_in_this_thread;
96 typedef std::unique_ptr<CKinect>
113 kinect->enableGrabRGB(
true);
114 kinect->enableGrabDepth(
true);
115 kinect->enableGrabAccelerometers(
false);
119 cout <<
"Calling CKinect::initialize()...";
120 kinect->initialize();
128 throw std::runtime_error(
129 "Couldn't open rawlog dataset file for input...");
132 CImage::setImagesPathBase(
144 bool there_is_obs =
true, hard_error =
false;
147 auto obs = CObservation3DRangeScan::Create();
148 kinect->getNextObservation(*obs, there_is_obs, hard_error);
151 throw std::runtime_error(
152 "Sensor returned 'hardware error'");
153 else if (there_is_obs)
156 std::atomic_store(&p.
new_obs, obs);
169 catch (
const std::exception& e)
171 throw std::runtime_error(
173 "\nError reading from dataset file (EOF?):\n") +
192 #ifndef FAKE_KINECT_FPS_RATE 193 const double At_dataset =
196 const double At_dataset = 1.0 / FAKE_KINECT_FPS_RATE;
199 my_last_read_obs_tim, now_tim);
201 const double need_to_wait_ms =
202 1000. * (At_dataset - At_actual);
205 if (need_to_wait_ms > 0)
206 std::this_thread::sleep_for(
207 std::chrono::duration<double, std::milli>(
212 std::atomic_store(&p.
new_obs, obs3D);
214 dataset_prev_tim = cur_tim;
222 p.
Hz = nImgs / tictac.
Tac();
228 catch (
const std::exception& e)
230 cout <<
"Exception in Kinect thread: " << e.what() << endl;
239 bool is_online,
const string& rawlog_file =
string())
244 is_online, rawlog_file,
253 cout <<
"Waiting for sensor initialization...\n";
260 std::this_thread::sleep_for(10ms);
261 }
while (!thrPar.quit);
264 if (thrPar.quit)
return;
265 cout <<
"OK! Sensor started to emit observations.\n";
271 win3D.setCameraAzimuthDeg(140);
272 win3D.setCameraElevationDeg(20);
273 win3D.setCameraZoom(8.0);
275 win3D.setCameraPointingToPoint(2.5, 0, 0);
279 gl_points->setPointSize(2.5);
287 scene->insert(gl_points);
291 const double aspect_ratio = 480.0 / 640.0;
294 const int VW_HEIGHT = aspect_ratio * VW_WIDTH;
297 viewInt = scene->createViewport(
"view2d_int");
298 viewInt->setViewportPosition(5, 30, VW_WIDTH, VW_HEIGHT);
299 win3D.addTextMessage(10, 30 + VW_HEIGHT + 10,
"Intensity data", 2);
301 win3D.addTextMessage(5, 5,
"'o'/'i'-zoom out/in, ESC: quit", 110);
303 win3D.unlockAccess3DScene();
309 while (win3D.isOpen() && !thrPar.quit)
313 newObs->timestamp != last_obs_tim)
316 last_obs_tim = newObs->timestamp;
320 win3D.get3DSceneAndLock();
323 win3D.addTextMessage(
329 win3D.addTextMessage(-100, -30,
format(
"%.02f Hz", thrPar.Hz), 101);
332 if (newObs->hasIntensityImage)
334 viewInt->setImageView(newObs->intensityImage);
341 win3D.unlockAccess3DScene();
351 if (newObs->hasRangeImage)
354 logger.
enter(
"RGBD->3D");
358 static pcl::PointCloud<pcl::PointXYZ> cloud;
359 logger.
enter(
"RGBD->3D.projectInto");
360 newObs->unprojectInto(cloud,
false );
361 logger.
leave(
"RGBD->3D.projectInto");
363 win3D.get3DSceneAndLock();
364 logger.
enter(
"RGBD->3D.load in OpenGL");
365 gl_points->loadFromPointsMap(&cloud);
366 logger.
leave(
"RGBD->3D.load in OpenGL");
367 win3D.unlockAccess3DScene();
372 static pcl::PointCloud<pcl::PointXYZRGB> cloud;
373 logger.
enter(
"RGBD->3D.projectInto");
374 newObs->unprojectInto(cloud,
false );
375 logger.
leave(
"RGBD->3D.projectInto");
377 win3D.get3DSceneAndLock();
378 logger.
enter(
"RGBD->3D.load in OpenGL");
379 gl_points->loadFromPointsMap(&cloud);
380 logger.
leave(
"RGBD->3D.load in OpenGL");
381 win3D.unlockAccess3DScene();
386 win3D.get3DSceneAndLock();
387 logger.
enter(
"RGBD->3D.projectInto");
391 newObs->unprojectInto(*gl_points, pp);
393 logger.
leave(
"RGBD->3D.projectInto");
394 win3D.unlockAccess3DScene();
399 const CPose3D globalPose(1,2,3,10.0_deg,20.0_deg,30.0_deg);
400 win3D.get3DSceneAndLock();
401 logger.
enter(
"RGBD->3D.projectInto");
402 newObs->unprojectInto(*gl_points,
false , &globalPose);
403 logger.
leave(
"RGBD->3D.projectInto");
404 win3D.unlockAccess3DScene();
411 if (!newObs->hasPoints3D)
413 logger.
enter(
"RGBD->3D.projectInto");
414 newObs->unprojectInto();
415 logger.
leave(
"RGBD->3D.projectInto");
418 CColouredPointsMap pntsMap;
419 pntsMap.colorScheme.scheme = CColouredPointsMap::cmFromIntensityImage;
420 pntsMap.loadFromRangeScan(*newObs);
422 win3D.get3DSceneAndLock();
423 logger.
enter(
"RGBD->3D.load in OpenGL");
424 gl_points->loadFromPointsMap(&pntsMap);
425 logger.
leave(
"RGBD->3D.load in OpenGL");
426 win3D.unlockAccess3DScene();
429 logger.
leave(
"RGBD->3D");
439 const int key = tolower(win3D.getPushedKey());
445 win3D.setCameraZoom(win3D.getCameraZoom() * 1.2);
449 win3D.setCameraZoom(win3D.getCameraZoom() / 1.2);
460 std::this_thread::sleep_for(1ms);
463 cout <<
"Waiting for grabbing thread to exit...\n";
477 <<
argv[0] <<
" --> Online grab from sensor\n" 478 <<
argv[0] <<
" [DATASET.rawlog] --> Offline from dataset\n";
485 cout <<
"Using online operation" << endl;
491 cout <<
"Using offline operation with: " <<
argv[1] << endl;
495 std::this_thread::sleep_for(50ms);
498 catch (
const std::exception& e)
505 printf(
"Another exception!!");
double Tac() noexcept
Stops the stopwatch.
static Ptr Create(Args &&... args)
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...
mrpt::system::TTimeStamp now()
A shortcut for system::getCurrentTime.
Contains classes for various device interfaces.
const string rawlog_file
Only when is_online==false.
CArchiveStreamBase< STREAM > archiveFrom(STREAM &s)
Helper function to create a templatized wrapper CArchive object for a: MRPT's CStream, std::istream, std::ostream, std::stringstream.
volatile bool quit
In/Out variable: Forces the thread to exit or indicates an error in the thread that caused it to end...
#define ASSERT_(f)
Defines an assertion mechanism.
mrpt::Clock::time_point TTimeStamp
A system independent time type, it holds the the number of 100-nanosecond intervals since January 1...
A class for grabing "range images", intensity images (either RGB or IR) and other information from an...
const bool is_online
true: live grabbing from the sensor, false: from rawlog
This namespace contains representation of robot actions and observations.
void Test_KinectOnlineOffline(bool is_online, const string &rawlog_file=string())
#define IS_CLASS(obj, class_name)
True if the given reference to object (derived from mrpt::rtti::CObject) is of the given class...
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.
const bool generate_3D_pointcloud_in_this_thread
true: populate the 3D point fields in the output observation; false: only RGB and Depth images...
CSetOfObjects::Ptr CornerXYZ(float scale=1.0)
Returns three arrows representing a X,Y,Z 3D corner.
void thread_grabbing(TThreadParam &p)
Used in CObservation3DRangeScan::unprojectInto()
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.
CObservation3DRangeScan::Ptr new_obs
RGB+D (+ optionally, 3D point cloud)
double timeDifference(const mrpt::system::TTimeStamp t_first, const mrpt::system::TTimeStamp t_later)
Returns the time difference from t1 to t2 (positive if t2 is posterior to t1), in seconds...
void Tic() noexcept
Starts the stopwatch.
std::string dateTimeLocalToString(const mrpt::system::TTimeStamp t)
Convert a timestamp into this textual form (in local time): YEAR/MONTH/DAY,HH:MM:SS.MMM.
static Ptr Create(Args &&... args)
volatile double Hz
Out variable: Approx.
#define INVALID_TIMESTAMP
Represents an invalid timestamp, where applicable.
bool takeIntoAccountSensorPoseOnRobot
(Default: false) If false, local (sensor-centric) coordinates of points are generated.
A graphical user interface (GUI) for efficiently rendering 3D scenes in real-time.