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 
14 #include <mrpt/system/CTicTac.h>
15 #include <iostream>
16 
17 using namespace mrpt::hwdrivers;
18 using namespace mrpt::gui;
19 using namespace mrpt::obs;
20 using namespace mrpt::system;
21 using namespace mrpt::io;
22 using namespace mrpt::serialization;
23 using namespace std;
24 
25 // ------------------------------------------------------
26 // TestCaptureOpenCV
27 // ------------------------------------------------------
28 bool LIVE_CAM = true;
29 int N_CAM_TO_OPEN = 0;
30 std::string AVI_TO_OPEN;
31 
32 void TestCapture_OpenCV()
33 {
34  CImageGrabber_OpenCV* capture = nullptr;
35 
36  if (LIVE_CAM)
37  {
38 #if 0 // test: Select the desired resolution
39  mrpt::vision::TCaptureCVOptions opts;
40  opts.frame_width = 320;
41  opts.frame_height = 240;
42  capture = new CImageGrabber_OpenCV( 0, CAMERA_CV_AUTODETECT, opts );
43 #else
45 #endif
46  }
47  else
48  {
49  capture = new CImageGrabber_OpenCV(AVI_TO_OPEN);
50  }
51 
52  CTicTac tictac;
53 
54  cout << "Press any key to stop capture to 'capture.rawlog'..." << endl;
55 
56  CFileGZOutputStream fil("./capture.rawlog");
57 
58  CDisplayWindow win("Capturing...");
59 
60  int cnt = 0;
61 
62  while (!mrpt::system::os::kbhit())
63  {
64  if ((cnt++ % 20) == 0)
65  {
66  if (cnt > 0)
67  {
68  double t = tictac.Tac();
69  double FPS = 20 / t;
70  printf("\n %f FPS\n", FPS);
71  }
72  tictac.Tic();
73  }
74 
76  CObservationImage::Create(); // Memory will be
77  // freed by
78  // SF destructor in each
79  // loop.
80  if (!capture->getObservation(*obs))
81  {
82  cerr << "Error retrieving images!" << endl;
83  break;
84  }
85 
86  archiveFrom(fil) << obs;
87 
88  cout << ".";
89  cout.flush();
90  if (win.isOpen()) win.showImage(obs->image);
91  }
92 
93  delete capture;
94 }
95 
96 int main(int argc, char** argv)
97 {
98  try
99  {
100  if (argc > 1)
101  {
102  if (!strstr(argv[1], ".avi"))
103  {
104  LIVE_CAM = true;
105  N_CAM_TO_OPEN = atoi(argv[1]);
106  }
107  else
108  {
109  LIVE_CAM = false;
110  AVI_TO_OPEN = argv[1];
111  }
112  }
113 
115 
116  return 0;
117  }
118  catch (const std::exception& e)
119  {
120  std::cerr << "MRPT error: " << mrpt::exception_to_str(e) << std::endl;
121  return -1;
122  }
123  catch (...)
124  {
125  printf("Another exception!!");
126  return -1;
127  }
128 }
double Tac() noexcept
Stops the stopwatch.
Definition: CTicTac.cpp:86
A high-performance stopwatch, with typical resolution of nanoseconds.
Contains classes for various device interfaces.
STL namespace.
CArchiveStreamBase< STREAM > archiveFrom(STREAM &s)
Helper function to create a templatized wrapper CArchive object for a: MRPT&#39;s CStream, std::istream, std::ostream, std::stringstream.
Definition: CArchive.h:592
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.
void TestCapture_OpenCV()
mrpt::gui::CDisplayWindow3D::Ptr win
const char * argv[]
A class for grabing images from a "OpenCV"-compatible camera, or from an AVI video file...
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
std::string AVI_TO_OPEN
bool getObservation(mrpt::obs::CObservationImage &out_observation)
Grab an image from the opened camera.
Classes for creating GUI windows for 2D and 3D visualization.
Definition: about_box.h:14
const int argc
Saves data to a file and transparently compress the data using the given compression level...
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