Visual Servoing Platform  version 3.6.1 under development (2024-11-15)
tutorial-video-reader.cpp
1 #include <visp3/core/vpConfig.h>
3 #include <visp3/gui/vpDisplayFactory.h>
5 #include <visp3/core/vpTime.h>
6 #include <visp3/io/vpVideoReader.h>
8 
15 int main(int argc, char **argv)
16 {
17 #if defined(VISP_HAVE_OPENCV) && defined(HAVE_OPENCV_HIGHGUI) && defined(HAVE_OPENCV_VIDEOIO)
18 #ifdef ENABLE_VISP_NAMESPACE
19  using namespace VISP_NAMESPACE_NAME;
20 #endif
21  try {
22  std::string videoname = "video.mp4";
23 
24  for (int i = 0; i < argc; i++) {
25  if (std::string(argv[i]) == "--name")
26  videoname = std::string(argv[i + 1]);
27  else if (std::string(argv[i]) == "--help" || std::string(argv[i]) == "-h") {
28  std::cout << "\nUsage: " << argv[0] << " [--name <video name> (default: " << videoname << ")]"
29  << " [--help] [-h]\n"
30  << std::endl;
31  return EXIT_SUCCESS;
32  }
33  }
34 
37  vpVideoReader g;
40  g.setFileName(videoname);
43  g.open(I);
45  std::cout << "Video name : " << videoname << std::endl;
46  std::cout << "Video framerate: " << g.getFramerate() << "Hz" << std::endl;
47  std::cout << "Video dimension: " << I.getWidth() << " " << I.getHeight() << std::endl;
48 
49 #ifdef VISP_HAVE_DISPLAY
51 #else
52  std::cout << "No image viewer is available..." << std::endl;
53 #endif
54  vpDisplay::setTitle(I, "Video reader");
55 
56  unsigned cpt = 1;
57  bool quit = false;
59  while ((!g.end()) && (!quit)) {
62  double t = vpTime::measureTimeMs();
65  g.acquire(I);
68  vpDisplay::displayText(I, 20, 20, "Click to quit", vpColor::red);
69  std::stringstream ss;
70  ss << "Frame: " << ++cpt;
71  std::cout << "Read " << ss.str() << std::endl;
72  vpDisplay::displayText(I, 40, 20, ss.str(), vpColor::red);
74  if (vpDisplay::getClick(I, false)) {
75  quit = true;
76  }
78  vpTime::wait(t, 1000. / g.getFramerate());
80  }
81  if (!quit) {
82  std::cout << "End of video was reached" << std::endl;
83  }
84 #ifdef VISP_HAVE_DISPLAY
85  delete d;
86 #endif
87  }
88  catch (const vpException &e) {
89  std::cout << e.getMessage() << std::endl;
90  }
91 #else
92  (void)argc;
93  (void)argv;
94  std::cout << "Install OpenCV and rebuild ViSP to use this example." << std::endl;
95 #endif
96  return EXIT_SUCCESS;
97 }
static const vpColor red
Definition: vpColor.h:217
Class that defines generic functionalities for display.
Definition: vpDisplay.h:178
static bool getClick(const vpImage< unsigned char > &I, bool blocking=true)
static void display(const vpImage< unsigned char > &I)
static void setTitle(const vpImage< unsigned char > &I, const std::string &windowtitle)
static void flush(const vpImage< unsigned char > &I)
static void displayText(const vpImage< unsigned char > &I, const vpImagePoint &ip, const std::string &s, const vpColor &color)
error that can be emitted by ViSP classes.
Definition: vpException.h:60
const char * getMessage() const
Definition: vpException.cpp:65
unsigned int getWidth() const
Definition: vpImage.h:242
unsigned int getHeight() const
Definition: vpImage.h:181
Class that enables to manipulate easily a video file or a sequence of images. As it inherits from the...
void acquire(vpImage< vpRGBa > &I)
void open(vpImage< vpRGBa > &I)
void setFileName(const std::string &filename)
double getFramerate()
vpDisplay * allocateDisplay()
Return a newly allocated vpDisplay specialization if a GUI library is available or nullptr otherwise.
VISP_EXPORT int wait(double t0, double t)
VISP_EXPORT double measureTimeMs()