Visual Servoing Platform  version 3.6.1 under development (2024-11-15)
tutorial-grabber-realsense.cpp
1 
2 #include <visp3/core/vpConfig.h>
3 #include <visp3/core/vpImage.h>
4 #include <visp3/core/vpXmlParserCamera.h>
5 #include <visp3/gui/vpDisplayGDI.h>
6 #include <visp3/gui/vpDisplayOpenCV.h>
7 #include <visp3/gui/vpDisplayX.h>
8 #include <visp3/io/vpImageStorageWorker.h>
9 #include <visp3/sensor/vpRealSense.h>
10 #include <visp3/sensor/vpRealSense2.h>
11 
12 void usage(const char *argv[], int error)
13 {
14  std::cout << "SYNOPSIS" << std::endl
15  << " " << argv[0] << " [--fps <6|15|30|60>]"
16  << " [--width <image width>]"
17  << " [--height <image height>]"
18  << " [--seqname <sequence name>]"
19  << " [--record <mode>]"
20  << " [--no-display]"
21  << " [--help] [-h]" << std::endl
22  << std::endl;
23  std::cout << "DESCRIPTION" << std::endl
24  << " --fps <6|15|30|60>" << std::endl
25  << " Frames per second." << std::endl
26  << " Default: 30." << std::endl
27  << std::endl
28  << " --width <image width>" << std::endl
29  << " Default: 640." << std::endl
30  << std::endl
31  << " --height <image height>" << std::endl
32  << " Default: 480." << std::endl
33  << std::endl
34  << " --seqname <sequence name>" << std::endl
35  << " Name of the sequence of image to create (ie: /tmp/image%04d.jpg)." << std::endl
36  << " Default: empty." << std::endl
37  << std::endl
38  << " --record <mode>" << std::endl
39  << " Allowed values for mode are:" << std::endl
40  << " 0: record all the captures images (continuous mode)," << std::endl
41  << " 1: record only images selected by a user click (single shot mode)." << std::endl
42  << " Default mode: 0" << std::endl
43  << std::endl
44  << " --no-display" << std::endl
45  << " Disable displaying captured images." << std::endl
46  << " When used and sequence name specified, record mode is internally set to 1 (continuous mode)."
47  << std::endl
48  << std::endl
49  << " --help, -h" << std::endl
50  << " Print this helper message." << std::endl
51  << std::endl;
52  std::cout << "USAGE" << std::endl
53  << " Example to visualize images:" << std::endl
54  << " " << argv[0] << std::endl
55  << std::endl
56  << " Examples to record a sequence of successive images in 640x480 resolution:" << std::endl
57  << " " << argv[0] << " --seqname I%04d.png" << std::endl
58  << " " << argv[0] << " --seqname folder/I%04d.png --record 0" << std::endl
59  << std::endl
60  << " Examples to record single shot 640x480 images:\n"
61  << " " << argv[0] << " --seqname I%04d.png --record 1\n"
62  << " " << argv[0] << " --seqname folder/I%04d.png --record 1" << std::endl
63  << std::endl
64  << " Examples to record single shot 1280x720 images:\n"
65  << " " << argv[0] << " --seqname I%04d.png --record 1 --width 1280 --height 720" << std::endl
66  << std::endl;
67 
68  if (error) {
69  std::cout << "Error" << std::endl
70  << " "
71  << "Unsupported parameter " << argv[error] << std::endl;
72  }
73 }
74 
78 int main(int argc, const char *argv[])
79 {
80 #if defined(VISP_HAVE_REALSENSE) || defined(VISP_HAVE_REALSENSE2) && defined(VISP_HAVE_THREADS)
81 #ifdef ENABLE_VISP_NAMESPACE
82  using namespace VISP_NAMESPACE_NAME;
83 #endif
84  try {
85  std::string opt_seqname;
86  int opt_record_mode = 0;
87  int opt_fps = 30;
88  bool opt_display = true;
89  unsigned int opt_width = 640;
90  unsigned int opt_height = 480;
91 
92  for (int i = 1; i < argc; i++) {
93  if (std::string(argv[i]) == "--fps") {
94  opt_fps = std::atoi(argv[i + 1]);
95  i++;
96  }
97  else if (std::string(argv[i]) == "--seqname") {
98  opt_seqname = std::string(argv[i + 1]);
99  i++;
100  }
101  else if (std::string(argv[i]) == "--width") {
102  opt_width = std::atoi(argv[i + 1]);
103  i++;
104  }
105  else if (std::string(argv[i]) == "--height") {
106  opt_height = std::atoi(argv[i + 1]);
107  i++;
108  }
109  else if (std::string(argv[i]) == "--record") {
110  opt_record_mode = std::atoi(argv[i + 1]);
111  i++;
112  }
113  else if (std::string(argv[i]) == "--no-display") {
114  opt_display = false;
115  }
116  else if (std::string(argv[i]) == "--help" || std::string(argv[i]) == "-h") {
117  usage(argv, 0);
118  return EXIT_SUCCESS;
119  }
120  else {
121  usage(argv, i);
122  return EXIT_FAILURE;
123  }
124  }
125 
126  if ((!opt_display) && (!opt_seqname.empty())) {
127  opt_record_mode = 0;
128  }
129 
130  if (opt_fps != 6 && opt_fps != 15 && opt_fps != 30 && opt_fps != 60) {
131  opt_fps = 30; // Default
132  }
133  std::cout << "Resolution : " << opt_width << " x " << opt_height << std::endl;
134  std::cout << "Recording : " << (opt_seqname.empty() ? "disabled" : "enabled") << std::endl;
135  std::cout << "Framerate : " << opt_fps << std::endl;
136  std::cout << "Display : " << (opt_display ? "enabled" : "disabled") << std::endl;
137 
138  std::string text_record_mode =
139  std::string("Record mode: ") + (opt_record_mode ? std::string("single") : std::string("continuous"));
140 
141  if (!opt_seqname.empty()) {
142  std::cout << text_record_mode << std::endl;
143  std::cout << "Record name: " << opt_seqname << std::endl;
144  }
145  vpImage<vpRGBa> I;
146 
147 #ifdef VISP_HAVE_REALSENSE2
148  std::cout << "SDK : Realsense 2" << std::endl;
149  vpRealSense2 g;
150  rs2::config config;
151  config.disable_stream(RS2_STREAM_DEPTH);
152  config.disable_stream(RS2_STREAM_INFRARED);
153  config.enable_stream(RS2_STREAM_COLOR, opt_width, opt_height, RS2_FORMAT_RGBA8, opt_fps);
154  g.open(config);
155 #else
156  std::cout << "SDK : Realsense 1" << std::endl;
157  vpRealSense g;
158  g.setStreamSettings(rs::stream::color, vpRealSense::vpRsStreamParams(opt_width, opt_height, rs::format::rgba8, 60));
159  g.open();
160 #endif
161  g.acquire(I);
162 
163  std::cout << "Image size : " << I.getWidth() << " " << I.getHeight() << std::endl;
164 
167  std::string output_folder = vpIoTools::getParent(opt_seqname);
168  if (!vpIoTools::checkDirectory(output_folder)) {
169  try {
170  std::cout << "Create output folder: " << output_folder << std::endl;
171  vpIoTools::makeDirectory(output_folder);
172  }
173  catch (const vpException &e) {
174  std::cout << e.getStringMessage();
175  return EXIT_FAILURE;
176  }
177  }
178  std::string cam_filename = output_folder + "/camera.xml";
179 
180  std::cout << "Save camera intrinsics in: " << cam_filename << std::endl;
181  if (p.save(cam, cam_filename, "camera")) {
182  std::cout << "Cannot save camera parameters in " << cam_filename << std::endl;
183  }
184 
185  vpDisplay *d = nullptr;
186  if (opt_display) {
187 #if !(defined(VISP_HAVE_X11) || defined(VISP_HAVE_GDI) || defined(VISP_HAVE_OPENCV))
188  std::cout << "No image viewer is available..." << std::endl;
189  opt_display = false;
190 #endif
191  }
192  if (opt_display) {
193 #ifdef VISP_HAVE_X11
194  d = new vpDisplayX(I);
195 #elif defined(VISP_HAVE_GDI)
196  d = new vpDisplayGDI(I);
197 #elif defined(HAVE_OPENCV_HIGHGUI)
198  d = new vpDisplayOpenCV(I);
199 #endif
200  }
201 
202  vpImageQueue<vpRGBa> image_queue(opt_seqname, opt_record_mode);
203  vpImageStorageWorker<vpRGBa> image_storage_worker(std::ref(image_queue));
204  std::thread image_storage_thread(&vpImageStorageWorker<vpRGBa>::run, &image_storage_worker);
205 
206  bool quit = false;
207  while (!quit) {
208  double t = vpTime::measureTimeMs();
209  g.acquire(I);
210 
212 
213  quit = image_queue.record(I);
214 
215  std::stringstream ss;
216  ss << "Acquisition time: " << std::setprecision(3) << vpTime::measureTimeMs() - t << " ms";
217  vpDisplay::displayText(I, I.getHeight() - 20, 10, ss.str(), vpColor::red);
218  vpDisplay::flush(I);
219  }
220  image_queue.cancel();
221  image_storage_thread.join();
222 
223  if (d) {
224  delete d;
225  }
226  }
227  catch (const vpException &e) {
228  std::cout << "Catch an exception: " << e << std::endl;
229  }
230 #else
231  (void)argc;
232  (void)argv;
233 #if !(defined(VISP_HAVE_REALSENSE) || defined(VISP_HAVE_REALSENSE2))
234  std::cout << "Install librealsense version > 2.31.0, configure and build ViSP again to use this example" << std::endl;
235 #endif
236 #if (VISP_CXX_STANDARD < VISP_CXX_STANDARD_11)
237  std::cout << "This tutorial should be built with c++11 support" << std::endl;
238 #endif
239 #endif
240 }
Generic class defining intrinsic camera parameters.
@ perspectiveProjWithoutDistortion
Perspective projection without distortion model.
static const vpColor red
Definition: vpColor.h:217
Display for windows using GDI (available on any windows 32 platform).
Definition: vpDisplayGDI.h:130
The vpDisplayOpenCV allows to display image using the OpenCV library. Thus to enable this class OpenC...
Class that defines generic functionalities for display.
Definition: vpDisplay.h:178
static void display(const vpImage< unsigned char > &I)
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 std::string & getStringMessage() const
Definition: vpException.cpp:67
unsigned int getWidth() const
Definition: vpImage.h:242
unsigned int getHeight() const
Definition: vpImage.h:181
static bool checkDirectory(const std::string &dirname)
Definition: vpIoTools.cpp:396
static void makeDirectory(const std::string &dirname)
Definition: vpIoTools.cpp:550
static std::string getParent(const std::string &pathname)
Definition: vpIoTools.cpp:1314
bool open(const rs2::config &cfg=rs2::config())
void setStreamSettings(const rs::stream &stream, const rs::preset &preset)
vpCameraParameters getCameraParameters(const rs::stream &stream, vpCameraParameters::vpCameraParametersProjType type=vpCameraParameters::perspectiveProjWithDistortion) const
void acquire(std::vector< vpColVector > &pointcloud)
XML parser to load and save intrinsic camera parameters.
int save(const vpCameraParameters &cam, const std::string &filename, const std::string &camera_name, unsigned int image_width=0, unsigned int image_height=0, const std::string &additionalInfo="", bool verbose=true)
VISP_EXPORT double measureTimeMs()