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::gui;
16 using namespace mrpt::hwdrivers;
17 using namespace mrpt::system;
18 using namespace mrpt::img;
19 using namespace std;
20 
21 // ------------------------------------------------------
22 // Test_FFMPEG_CaptureCamera
23 // ------------------------------------------------------
24 void Test_FFMPEG_CaptureCamera(const std::string& video_url)
25 {
26  CFFMPEG_InputStream in_video;
27 
28  if (!in_video.openURL(video_url, false /*grayscale*/, true /* verbose */))
29  return;
30 
31  CDisplayWindow win("Video");
32 
33  CTicTac tictac;
34  tictac.Tic();
35  unsigned int nFrames = 0;
36 
37  CImage img;
38  while (win.isOpen() && in_video.retrieveFrame(img))
39  {
40  double fps = ++nFrames / tictac.Tac();
41  img.textOut(
42  5, 5, mrpt::format("%.02f fps", fps), TColor(0x80, 0x80, 0x80));
43  if (nFrames > 100)
44  {
45  tictac.Tic();
46  nFrames = 0;
47  }
48 
49  if (nFrames == 1)
50  cout << "Video FPS: " << in_video.getVideoFPS() << endl;
51 
52  win.showImage(img);
53  std::this_thread::sleep_for(10ms);
54 
55  if (win.keyHit() && win.waitForKey() == 27) break;
56  }
57 
58  in_video.close();
60 }
61 
62 int main(int argc, char** argv)
63 {
64  try
65  {
66  if (argc != 2)
67  {
68  cout << "Usage: " << endl;
69  cout << " Open a video file: " << argv[0] << " <VIDEOFILE>" << endl;
70  cout << " Open an IP camera: " << argv[0]
71  << " rtsp://a.b.c.d/live.sdp" << endl;
72  cout << endl;
73  return 1;
74  }
75 
77 
78  return 0;
79  }
80  catch (const std::exception& e)
81  {
82  std::cerr << "MRPT error: " << mrpt::exception_to_str(e) << std::endl;
83  return -1;
84  }
85  catch (...)
86  {
87  printf("Another exception!!");
88  return -1;
89  }
90 }
bool retrieveFrame(mrpt::img::CImage &out_img)
Get the next frame from the video stream.
void Test_FFMPEG_CaptureCamera(const std::string &video_url)
double Tac() noexcept
Stops the stopwatch.
Definition: CTicTac.cpp:86
std::string std::string format(std::string_view fmt, ARGS &&... args)
Definition: format.h:26
A high-performance stopwatch, with typical resolution of nanoseconds.
Contains classes for various device interfaces.
A generic class which process a video file or other kind of input stream (http, rtsp) and allows the ...
STL namespace.
This class creates a window as a graphical user interface (GUI) for displaying images to the user...
bool openURL(const std::string &url, bool grab_as_grayscale=false, bool verbose=false)
Open a video file or a video stream (rtsp://) This can be used to open local video files (eg...
mrpt::gui::CDisplayWindow3D::Ptr win
void pause(const std::string &msg=std::string("Press any key to continue...")) noexcept
Shows the message "Press any key to continue" (or other custom message) to the current standard outpu...
Definition: os.cpp:430
const char * argv[]
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
virtual void textOut(int x0, int y0, const std::string &str, const mrpt::img::TColor color)
Renders 2D text using bitmap fonts.
Definition: CCanvas.cpp:374
Classes for creating GUI windows for 2D and 3D visualization.
Definition: about_box.h:14
const int argc
void close()
Close the video stream (this is called automatically at destruction).
A RGB color - 8bit.
Definition: TColor.h:25
void Tic() noexcept
Starts the stopwatch.
Definition: CTicTac.cpp:75
double getVideoFPS() const
Get the frame-per-second (FPS) of the video source, or "-1" if the video is not open.
A class for storing images as grayscale or RGB bitmaps.
Definition: img/CImage.h:148



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