42 #include <visp3/core/vpImageConvert.h>
43 #include <visp3/gui/vpDisplayGDI.h>
44 #include <visp3/gui/vpDisplayX.h>
45 #include <visp3/sensor/vpRealSense2.h>
47 #if defined(VISP_HAVE_REALSENSE2) && (VISP_CXX_STANDARD >= VISP_CXX_STANDARD_11) && \
48 (defined(VISP_HAVE_X11) || defined(VISP_HAVE_GDI)) && (RS2_API_VERSION > ((2 * 10000) + (31 * 100) + 0))
52 #ifdef ENABLE_VISP_NAMESPACE
57 unsigned int display_scale = 2;
60 std::cout <<
"Product line: " << product_line << std::endl;
62 if (product_line !=
"T200") {
63 std::cout <<
"This example doesn't support devices that are not part of T200 product line family !" << std::endl;
67 config.enable_stream(RS2_STREAM_FISHEYE, 1, RS2_FORMAT_Y8);
68 config.enable_stream(RS2_STREAM_FISHEYE, 2, RS2_FORMAT_Y8);
79 #if defined(VISP_HAVE_X11)
80 vpDisplayX display_left;
81 vpDisplayX display_right;
82 #elif defined(VISP_HAVE_GDI)
87 #if defined(VISP_HAVE_X11) || defined(VISP_HAVE_GDI)
89 display_right.setDownScalingFactor(display_scale);
90 display_left.init(I_left, 10, 10,
"Left image");
91 display_right.init(I_right,
static_cast<int>(I_left.getWidth() / display_scale) + 80, 10,
"Right image");
98 rs.
acquire(&I_left, &I_right, &ts);
117 std::cerr <<
"RealSense error " << e.
what() << std::endl;
119 catch (
const std::exception &e) {
120 std::cerr << e.what() << std::endl;
128 #if !defined(VISP_HAVE_REALSENSE2)
129 std::cout <<
"You do not realsense2 SDK functionality enabled..." << std::endl;
130 std::cout <<
"Tip:" << std::endl;
131 std::cout <<
"- Install librealsense2, configure again ViSP using cmake and build again this example" << std::endl;
133 #elif !(defined(VISP_HAVE_X11) || defined(VISP_HAVE_GDI))
134 std::cout <<
"You don't have X11 or GDI display capabilities" << std::endl;
135 #elif !(RS2_API_VERSION > ((2 * 10000) + (31 * 100) + 0))
136 std::cout <<
"Install librealsense version > 2.31.0" << std::endl;
Display for windows using GDI (available on any windows 32 platform).
void setDownScalingFactor(unsigned int scale)
static bool getClick(const vpImage< unsigned char > &I, bool blocking=true)
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.
const char * what() const
void acquire(vpImage< unsigned char > &grey, double *ts=nullptr)
bool open(const rs2::config &cfg=rs2::config())
rs2_intrinsics getIntrinsics(const rs2_stream &stream, int index=-1) const
std::string getProductLine()
VISP_EXPORT double measureTimeMs()