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);
74 static_cast<unsigned int>(rs.
getIntrinsics(RS2_STREAM_FISHEYE).width));
77 static_cast<unsigned int>(rs.
getIntrinsics(RS2_STREAM_FISHEYE).width));
79#if defined(VISP_HAVE_X11)
82#elif defined(VISP_HAVE_GDI)
87#if defined(VISP_HAVE_X11) || defined(VISP_HAVE_GDI)
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).
Use the X11 console to display images on unix-like OS. Thus to enable this class X11 should be instal...
void init(vpImage< unsigned char > &I, int win_x=-1, int win_y=-1, const std::string &win_title="") VP_OVERRIDE
static bool getClick(const vpImage< unsigned char > &I, bool blocking=true)
virtual void setDownScalingFactor(unsigned int scale)
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 of the vpImage class member functions.
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()