MRPT  2.0.1
test.cpp
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | https://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2020, Individual contributors, see AUTHORS file |
6  | See: https://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See: https://www.mrpt.org/License |
8  +------------------------------------------------------------------------+ */
9 
10 /*
11  This example was contributed by Adrien Barral - Robopec (France)
12 */
13 
14 #include <mrpt/gui.h>
16 #include <mrpt/opengl/CPlanarLaserScan.h> // [mrpt-maps]
17 #include <iostream>
18 
19 using namespace mrpt;
20 using namespace mrpt::obs;
21 using namespace mrpt::opengl;
22 using namespace mrpt::hwdrivers;
23 using namespace mrpt::gui;
24 using namespace std;
25 
26 int main(int argc, char* argv[])
27 {
28  if (argc < 3)
29  {
30  cout << "Usage : " << argv[0] << " <IP> <port> " << endl;
31  return 0;
32  }
33 
34  CLMS100Eth laser(string(argv[1]), atoi(argv[2]));
35  laser.turnOn();
36 
37  bool isOutObs, hardwareError;
39  laser.doProcessSimple(isOutObs, outObs, hardwareError);
40 
41  CDisplayWindow3D win3D("Scan", 200, 200);
42 
43  COpenGLScene::Ptr ptr_scene = win3D.get3DSceneAndLock();
44 
46  obj->clear();
47  obj->setColor(0, 0, 1);
48  obj->setName("scan_LMS100");
49  obj->setScan(outObs);
50  ptr_scene->insert(obj);
51 
52  win3D.unlockAccess3DScene();
53  win3D.forceRepaint();
54 
55  while (win3D.isOpen())
56  {
57  laser.doProcessSimple(isOutObs, outObs, hardwareError);
58 
59  ptr_scene = win3D.get3DSceneAndLock();
61  std::dynamic_pointer_cast<opengl::CPlanarLaserScan>(
62  ptr_scene->getByName("scan_LMS100"));
63  obj->clear();
64  obj->setScan(outObs);
65  win3D.unlockAccess3DScene();
66  win3D.forceRepaint();
67  std::this_thread::sleep_for(20ms);
68  }
69  win3D.waitForKey();
70  return 0;
71 }
This "software driver" implements the communication protocol for interfacing a SICK LMS100 laser scan...
Definition: CLMS100eth.h:72
static Ptr Create(Args &&... args)
Contains classes for various device interfaces.
STL namespace.
This namespace contains representation of robot actions and observations.
This object renders a 2D laser scan by means of three elements: the points, the line along end-points...
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
const char * argv[]
A "CObservation"-derived class that represents a 2D range scan measurement (typically from a laser sc...
The namespace for 3D scene representation and rendering.
Definition: CGlCanvasBase.h:13
Classes for creating GUI windows for 2D and 3D visualization.
Definition: about_box.h:14
const int argc
A graphical user interface (GUI) for efficiently rendering 3D scenes in real-time.



Page generated by Doxygen 1.8.14 for MRPT 2.0.1 Git: 0fef1a6d7 Fri Apr 3 23:00:21 2020 +0200 at vie abr 3 23:20:28 CEST 2020