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 
12 #include <mrpt/system/CTicTac.h>
13 #include <iostream>
14 
15 using namespace mrpt::hwdrivers;
16 using namespace mrpt::gui;
17 using namespace mrpt::obs;
18 using namespace mrpt::system;
19 using namespace std;
20 
21 //#define DO_CAPTURE 1
22 #define DO_CAPTURE 0
23 
24 // ------------------------------------------------------
25 // TestCapture
26 // ------------------------------------------------------
27 
28 void TestCapture_1394()
29 {
30  TCaptureOptions_dc1394 options;
31 
32  uint64_t cameraGUID = 0;
33  uint16_t cameraUnit = 0;
34 
35  options.frame_width = 1024; // 640;
36  options.frame_height = 768; // 480;
38 
39  // Other capture options:
40  // options.shutter = 900;
41 
42  // For stereo Bumblebee tests/debugging (Use the Bumblebee class in
43  // mrpt::vision instead!)
44  // options.mode7 = 3;
45  // options.deinterlace_stereo = true;
46 
47  CImageGrabber_dc1394 capture(
48  cameraGUID, cameraUnit, options, true /* Verbose */);
49 
50  CTicTac tictac;
51 
52  cout << "Press any key to stop capture to 'capture.rawlog'..." << endl;
53 
54 #if DO_CAPTURE
55  CFileGZOutputStream fil("./capture.rawlog");
56 #endif
57 
58  CDisplayWindow win("Capturing...");
59 
60  int cnt = 0;
61 
62  while (!mrpt::system::os::kbhit())
63  {
64  if ((cnt++ % 10) == 0)
65  {
66  if (cnt > 0)
67  {
68  double t = tictac.Tac();
69  double FPS = 10 / t;
70  printf("\n %f FPS\n", FPS);
71 
72  // Other capture options:
73  // options.shutter = cnt + 1;
74  // capture.changeCaptureOptions(options);
75  }
76  tictac.Tic();
77  }
78 
80  CObservationImage::Create(); // Memory will be
81  // freed by
82  // SF destructor in each
83  // loop.
84  if (!capture.getObservation(*obs))
85  {
86  cerr << "Error retrieving images!" << endl;
87  break;
88  }
89 
90 #if DO_CAPTURE
91  fil << obs;
92 #endif
93  cout << ".";
94  cout.flush();
95  if (win.isOpen()) win.showImage(obs->image);
96  }
97 }
98 
99 int main(int argc, char** argv)
100 {
101  try
102  {
104 
105  return 0;
106  }
107  catch (const std::exception& e)
108  {
109  std::cerr << "MRPT error: " << mrpt::exception_to_str(e) << std::endl;
110  return -1;
111  }
112  catch (...)
113  {
114  printf("Another exception!!");
115  return -1;
116  }
117 }
double Tac() noexcept
Stops the stopwatch.
Definition: CTicTac.cpp:86
Options used when creating an dc1394 capture object All but the frame size, framerate, and color_coding can be changed dynamically by CImageGrabber_dc1394::changeCaptureOptions.
A high-performance stopwatch, with typical resolution of nanoseconds.
Contains classes for various device interfaces.
STL namespace.
mrpt::io::CFileGZOutputStream CFileGZOutputStream
A class for grabing images from a IEEE1394 (Firewire) camera using the libdc1394-2 library...
This class creates a window as a graphical user interface (GUI) for displaying images to the user...
This namespace contains representation of robot actions and observations.
mrpt::gui::CDisplayWindow3D::Ptr win
int frame_width
Capture resolution (Default: 640x480)
void TestCapture_1394()
grabber_dc1394_color_coding_t color_coding
const char * argv[]
bool kbhit() noexcept
An OS-independent version of kbhit, which returns true if a key has been pushed.
Definition: os.cpp:392
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...
Definition: exceptions.cpp:59
Classes for creating GUI windows for 2D and 3D visualization.
Definition: about_box.h:14
const int argc
void Tic() noexcept
Starts the stopwatch.
Definition: CTicTac.cpp:75



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