43 #include <visp3/core/vpImageConvert.h>
44 #include <visp3/core/vpImageTools.h>
45 #include <visp3/gui/vpDisplayGDI.h>
46 #include <visp3/gui/vpDisplayX.h>
47 #include <visp3/sensor/vpRealSense2.h>
49 #if defined(VISP_HAVE_REALSENSE2) && (VISP_CXX_STANDARD >= VISP_CXX_STANDARD_11) && \
50 (defined(VISP_HAVE_X11) || defined(VISP_HAVE_GDI)) && (RS2_API_VERSION > ((2 * 10000) + (31 * 100) + 0))
54 #ifdef ENABLE_VISP_NAMESPACE
59 unsigned int display_scale = 2;
62 std::cout <<
"Product line: " << product_line << std::endl;
64 if (product_line !=
"T200") {
65 std::cout <<
"This example doesn't support devices that are not part of T200 product line family !" << std::endl;
72 config.enable_stream(RS2_STREAM_FISHEYE, 1, RS2_FORMAT_Y8);
73 config.enable_stream(RS2_STREAM_FISHEYE, 2, RS2_FORMAT_Y8);
84 std::cout <<
"Left fisheye camera parameters: " << cam_left << std::endl;
86 #if defined(VISP_HAVE_X11)
89 #elif defined(VISP_HAVE_GDI)
94 #if defined(VISP_HAVE_X11) || defined(VISP_HAVE_GDI)
96 d_undist.setDownScalingFactor(display_scale);
97 d.
init(I, 10, 10,
"Left image");
98 d_undist.init(I_undist, I.
getWidth() / display_scale + 80, 10,
"Undistorted image");
109 rs.
acquire(&I,
nullptr,
nullptr);
130 std::cerr <<
"RealSense error " << e.
what() << std::endl;
132 catch (
const std::exception &e) {
133 std::cerr << e.what() << std::endl;
141 #if !defined(VISP_HAVE_REALSENSE2)
142 std::cout <<
"You do not realsense2 SDK functionality enabled..." << std::endl;
143 std::cout <<
"Tip:" << std::endl;
144 std::cout <<
"- Install librealsense2, configure again ViSP using cmake and build again this example" << std::endl;
146 #elif !(defined(VISP_HAVE_X11) || defined(VISP_HAVE_GDI))
147 std::cout <<
"You don't have X11 or GDI display capabilities" << std::endl;
148 #elif !(RS2_API_VERSION > ((2 * 10000) + (31 * 100) + 0))
149 std::cout <<
"Install librealsense version > 2.31.0" << std::endl;
Implementation of a generic 2D array used as base class for matrices and vectors.
Generic class defining intrinsic camera parameters.
@ ProjWithKannalaBrandtDistortion
Projection with Kannala-Brandt distortion model.
Display for windows using GDI (available on any windows 32 platform).
void init(vpImage< unsigned char > &I, int winx=-1, int winy=-1, const std::string &title="") VP_OVERRIDE
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
unsigned int getWidth() const
unsigned int getHeight() const
vpCameraParameters getCameraParameters(const rs2_stream &stream, vpCameraParameters::vpCameraParametersProjType type=vpCameraParameters::perspectiveProjWithDistortion, int index=-1) 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()