Test Intel RealSense D435 acquisition with librealsense2 (OpenCV demo).
#include <iostream>
#include <visp3/core/vpConfig.h>
#if defined(VISP_HAVE_REALSENSE2) && (VISP_CXX_STANDARD >= VISP_CXX_STANDARD_11) && \
(defined(VISP_HAVE_X11) || defined(VISP_HAVE_GDI)) && (VISP_HAVE_OPENCV_VERSION >= 0x030000)
#include <visp3/core/vpImage.h>
#include <visp3/core/vpImageConvert.h>
#include <visp3/core/vpMeterPixelConversion.h>
#include <visp3/sensor/vpRealSense2.h>
#include <opencv2/core.hpp>
#include <opencv2/highgui.hpp>
namespace
{
struct float3
{
float x, y, z;
float3() : x(0), y(0), z(0) { }
float3(float x_, float y_, float z_) : x(x_), y(y_), z(z_) { }
};
void getPointcloud(const rs2::depth_frame &depth_frame, std::vector<float3> &pointcloud)
{
auto vf = depth_frame.as<rs2::video_frame>();
const int width = vf.get_width();
const int height = vf.get_height();
pointcloud.resize((size_t)(width * height));
rs2::pointcloud pc;
rs2::points points = pc.calculate(depth_frame);
auto vertices = points.get_vertices();
for (size_t i = 0; i < points.size(); i++) {
float3 pcl;
if (vertices[i].z > std::numeric_limits<float>::epsilon()) {
pcl.x = vertices[i].x;
pcl.y = vertices[i].y;
pcl.z = vertices[i].z;
}
pointcloud[i] = pcl;
}
}
void createDepthHist(std::vector<uint32_t> &histogram, const std::vector<float3> &pointcloud, float depth_scale)
{
std::fill(histogram.begin(), histogram.end(), 0);
for (size_t i = 0; i < pointcloud.size(); i++) {
const float3 &pt = pointcloud[i];
++histogram[static_cast<uint32_t>(pt.z * depth_scale)];
}
for (int i = 2; i < 0x10000; i++)
histogram[i] += histogram[i - 1];
}
unsigned char getDepthColor(const std::vector<uint32_t> &histogram, float z, float depth_scale)
{
return static_cast<unsigned char>(histogram[static_cast<uint32_t>(z * depth_scale)] * 255 / histogram[0xFFFF]);
}
void frame_to_mat(const rs2::frame &f, cv::Mat &img)
{
auto vf = f.as<rs2::video_frame>();
const int w = vf.get_width();
const int h = vf.get_height();
const int size = w * h;
if (f.get_profile().format() == RS2_FORMAT_BGR8) {
memcpy(static_cast<void *>(img.ptr<cv::Vec3b>()), f.get_data(), size * 3);
}
else if (f.get_profile().format() == RS2_FORMAT_RGB8) {
cv::Mat tmp(h, w, CV_8UC3, const_cast<void *>(f.get_data()), cv::Mat::AUTO_STEP);
cv::cvtColor(tmp, img, cv::COLOR_RGB2BGR);
}
else if (f.get_profile().format() == RS2_FORMAT_Y8) {
memcpy(img.ptr<uchar>(), f.get_data(), size);
}
}
}
int main()
{
#ifdef ENABLE_VISP_NAMESPACE
#endif
const int width = 640, height = 480, fps = 60;
rs2::config config;
config.enable_stream(RS2_STREAM_COLOR, width, height, RS2_FORMAT_BGR8, fps);
config.enable_stream(RS2_STREAM_DEPTH, width, height, RS2_FORMAT_Z16, fps);
config.enable_stream(RS2_STREAM_INFRARED, 1, width, height, RS2_FORMAT_Y8, fps);
config.enable_stream(RS2_STREAM_INFRARED, 2, width, height, RS2_FORMAT_Y8, fps);
auto color_profile = profile.get_stream(RS2_STREAM_COLOR).as<rs2::video_stream_profile>();
cv::Mat mat_color(color_profile.height(), color_profile.width(), CV_8UC3);
auto depth_profile = profile.get_stream(RS2_STREAM_DEPTH).as<rs2::video_stream_profile>();
cv::Mat mat_depth(depth_profile.height(), depth_profile.width(), CV_8UC3);
rs2::colorizer color_map;
auto infrared_profile = profile.get_stream(RS2_STREAM_INFRARED).as<rs2::video_stream_profile>();
cv::Mat mat_infrared1(infrared_profile.height(), infrared_profile.width(), CV_8UC1);
cv::Mat mat_infrared2(infrared_profile.height(), infrared_profile.width(), CV_8UC1);
std::vector<float3> pointcloud;
cv::Mat mat_pointcloud(depth_profile.height(), depth_profile.width(), CV_8UC1);
std::vector<uint32_t> histogram(0x10000);
std::vector<double> time_vector;
while (true) {
auto data = pipe.wait_for_frames();
frame_to_mat(data.get_color_frame(), mat_color);
#if (RS2_API_VERSION >= ((2 * 10000) + (16 * 100) + 0))
frame_to_mat(data.get_depth_frame().apply_filter(color_map), mat_depth);
#else
frame_to_mat(color_map(data.get_depth_frame()), mat_depth);
#endif
cv::imshow("OpenCV color", mat_color);
cv::imshow("OpenCV depth", mat_depth);
#if (RS2_API_VERSION >= ((2 * 10000) + (10 * 100) + 0))
frame_to_mat(data.get_infrared_frame(1), mat_infrared1);
frame_to_mat(data.get_infrared_frame(2), mat_infrared2);
cv::imshow("OpenCV infrared left", mat_infrared1);
cv::imshow("OpenCV infrared right", mat_infrared2);
#endif
getPointcloud(data.get_depth_frame(), pointcloud);
createDepthHist(histogram, pointcloud, depth_scale);
mat_pointcloud = 0;
for (size_t i = 0; i < pointcloud.size(); i++) {
const float3 &pt = pointcloud[i];
float Z = pt.z;
if (Z > 1e-2) {
double x = pt.x / Z;
double y = pt.y / Z;
int u = std::min<int>(
static_cast<int>(width - 1),
static_cast<int>(std::max<double>(0.0, imPt.
get_u())));
int v = std::min<int>(
static_cast<int>(height - 1),
static_cast<int>(std::max<double>(0.0, imPt.
get_v())));
unsigned char depth_viz = getDepthColor(histogram, Z, depth_scale);
mat_pointcloud.at<uchar>(v, u) = depth_viz;
}
}
cv::imshow("OpenCV projected pointcloud", mat_pointcloud);
if (cv::waitKey(5) == 27 || cv::waitKey(5) == 113) {
break;
}
}
return EXIT_SUCCESS;
}
#else
int main()
{
#if !defined(VISP_HAVE_REALSENSE2)
std::cout << "Install librealsense2 to make this test work." << std::endl;
#endif
#if !(VISP_HAVE_OPENCV_VERSION >= 0x030000)
std::cout << "Install OpenCV version >= 3 to make this test work." << std::endl;
#endif
return EXIT_SUCCESS;
}
#endif
Generic class defining intrinsic camera parameters.
void start(bool reset=true)
Class that defines a 2D point in an image. This class is useful for image processing and stores only ...
static double getMedian(const std::vector< double > &v)
static double getMean(const std::vector< double > &v)
static void convertPoint(const vpCameraParameters &cam, const double &x, const double &y, double &u, double &v)
vpCameraParameters getCameraParameters(const rs2_stream &stream, vpCameraParameters::vpCameraParametersProjType type=vpCameraParameters::perspectiveProjWithDistortion, int index=-1) const
rs2::pipeline_profile & getPipelineProfile()
Get a reference to rs2::pipeline_profile.
bool open(const rs2::config &cfg=rs2::config())
rs2::pipeline & getPipeline()
Get a reference to rs2::pipeline.