PCL: RGB-D圖像轉(zhuǎn)換成點(diǎn)云數(shù)據(jù)+點(diǎn)云融合

1. 題目

已經(jīng)給定3幀(不連續(xù))RGB-D相機(jī)拍攝的 RGB + depth 圖像矢赁,以及他們之間的變換矩陣(以第一幀為參考幀)贬丛,請(qǐng)將上述3幀RGB-D圖像分別生成點(diǎn)云并融合出最終的點(diǎn)云輸出。
數(shù)據(jù)如下:


rgb0.png

rgb1.png

rgb2.png

depth0.png

depth1.png

depth2.png

相機(jī)位姿文件:
cameraTrajectory.txt內(nèi)容如下:
//# tx ty tz qx qy qz qw
0.000000000 0.000000000 0.000000000 0.000000000 0.000000000 0.000000000 1.000000000
-0.288952827 0.222811699 -0.252029210 0.054562528 -0.312418818 -0.288284063 0.903498590
-0.650643229 0.383824050 -0.501303971 -0.016285975 -0.159155473 -0.111743204 0.980774045


image.png

2.RGBD圖像轉(zhuǎn)點(diǎn)云數(shù)據(jù)+點(diǎn)云融合代碼

// RDGD圖像轉(zhuǎn)點(diǎn)云數(shù)據(jù)
#include <pcl/point_types.h>
//點(diǎn)云文件IO(pcd文件和ply文件)
#include <pcl/io/pcd_io.h>
#include <pcl/io/ply_io.h>
//kd樹
#include <pcl/kdtree/kdtree_flann.h>
//特征提取
#include <pcl/features/normal_3d_omp.h>
#include <pcl/features/normal_3d.h>
//重構(gòu)
#include <pcl/surface/gp3.h>
#include <pcl/surface/poisson.h>
//可視化
#include <pcl/visualization/pcl_visualizer.h>
// 矩陣變換
#include <pcl/common/transforms.h>
//多線程
#include <boost/thread/thread.hpp>
#include <fstream>
#include <iostream>
#include <stdio.h>
#include <string.h>
#include <string>
#include <opencv2/opencv.hpp>
#include <eigen3/Eigen/Dense>

using namespace std;
using namespace cv;

typedef pcl::PointXYZRGB PointT;
typedef pcl::PointCloud<PointT> PointCloud;

// camera instrinsic parameters相機(jī)內(nèi)參
struct CAMERA_INTRINSIC_PARAMETERS
{
    double fx, fy, cx, cy, scale;
};

// RGBD圖像轉(zhuǎn)點(diǎn)云數(shù)據(jù)
PointCloud::Ptr image2PointCloud(
        Mat rgb,
        Mat depth,
        CAMERA_INTRINSIC_PARAMETERS camera)
{
    PointCloud::Ptr cloud(new PointCloud);
    for (int m = 0; m < depth.rows; m++)
        for (int n = 0; n < depth.cols; n++)
        {
            // 獲取深度圖中(m,n)處的值
            ushort d = depth.ptr<ushort>(m)[n];
            // d 可能沒有值抄邀,若如此昼榛,跳過(guò)此點(diǎn)
            if (d == 0)
                continue;
            // d 存在值,則向點(diǎn)云增加一個(gè)點(diǎn)
            PointT p;
            // 計(jì)算這個(gè)點(diǎn)的空間坐標(biāo)
            p.z = double(d) / camera.scale;
            p.x = (n - camera.cx) * p.z / camera.fx;
            p.y = (m - camera.cy) * p.z / camera.fy;

            // 從rgb圖像中獲取它的顏色
            p.b = rgb.ptr<uchar>(m)[n * 3];
            p.g = rgb.ptr<uchar>(m)[n * 3 + 1];
            p.r = rgb.ptr<uchar>(m)[n * 3 + 2];

            // 把p加入到點(diǎn)云中
            cloud->points.push_back(p);
        }
    // 設(shè)置并保存點(diǎn)云
    cloud->height = 1;
    cloud->width = cloud->points.size();
    cloud->is_dense = false;
    return cloud;
}

// 讀取相機(jī)姿態(tài)CameraTrajectory
// # tx ty tz qx qy qz qw
void readCameraTrajectory(
        string camTransFile,
        vector<Eigen::Isometry3d> &poses)
{
    ifstream fcamTrans(camTransFile);
    if (!fcamTrans.is_open())
    {
        cerr << "trajectory is empty!" << endl;
        return;
    }
    else
    {
        string str;
        while ((getline(fcamTrans, str)))
        {
            Eigen::Quaterniond q; //四元數(shù)
            Eigen::Vector3d t;
            Eigen::Isometry3d T = Eigen::Isometry3d::Identity();
            // 第一行為注釋
            if (str.at(0) == '#')
            {
                cout << "str" << str << endl;
                continue;
            }
            istringstream strdata(str);

            strdata >> t[0] >> t[1] >> t[2] >> q.x() >> q.y() >> q.z() >> q.w();
            T.rotate(q);
            T.pretranslate(t);
            poses.push_back(T);
        }
    }
}

// 簡(jiǎn)單點(diǎn)云疊加融合
PointCloud::Ptr pointCloudFusion( 
    PointCloud::Ptr &original, 
    cv::Mat curr_rgb_im,
    cv::Mat curr_depth_im, 
    Eigen::Isometry3d T, 
    CAMERA_INTRINSIC_PARAMETERS camera )
{
    // ---------- 開始你的代碼  ------------- -//
    PointCloud::Ptr newCloud(new PointCloud()),transCloud(new PointCloud());
    newCloud=image2PointCloud(curr_rgb_im,curr_depth_im,camera);
    pcl::transformPointCloud(*newCloud,*transCloud,T.matrix());
    *original+=*transCloud;
    return original;
    // ---------- 結(jié)束你的代碼  ------------- -//
}

// 顯示rgb點(diǎn)云
boost::shared_ptr<pcl::visualization::PCLVisualizer> rgbVis(
    pcl::PointCloud<pcl::PointXYZRGB>::ConstPtr cloud)
{
  // --------------------------------------------
  // -----Open 3D viewer and add point cloud-----
  // --------------------------------------------
  boost::shared_ptr<pcl::visualization::PCLVisualizer> viewer(new pcl::visualization::PCLVisualizer("3D Viewer"));
  viewer->setBackgroundColor(0, 0, 0);
  pcl::visualization::PointCloudColorHandlerRGBField<pcl::PointXYZRGB> rgb(cloud);
  viewer->addPointCloud<pcl::PointXYZRGB>(cloud, rgb, "sample cloud");
  viewer->setPointCloudRenderingProperties(pcl::visualization::PCL_VISUALIZER_POINT_SIZE, 3, "sample cloud");
  viewer->addCoordinateSystem(1.0);
  viewer->initCameraParameters();
  return (viewer);
}

int main()
{
    // 相機(jī)內(nèi)參
    CAMERA_INTRINSIC_PARAMETERS cameraParams{517.0, 516.0, 318.6, 255.3, 5000.0};

    int frameNum = 3;
    vector<Eigen::Isometry3d> poses;
    PointCloud::Ptr fusedCloud(new PointCloud());
    string color_im_path = "xxx/rgb/rgb";
    string depth_im_path = "xxx/depth/depth";
    string cameraPosePath = "xxx/cameraTrajectory.txt";
    readCameraTrajectory(cameraPosePath, poses);
    for (int idx = 0; idx < frameNum; idx++)
    {
        string rgbPath = color_im_path + to_string(idx) + ".png";
        string depthPath = depth_im_path + to_string(idx) + ".png";
        cv::Mat color_im = cv::imread(rgbPath);
        if (color_im.empty())
        {
            cerr << "Fail to load rgb image!" << endl;
        }
        cv::Mat depth_im = cv::imread(depthPath, -1);
        if (depth_im.empty())
        {
            cerr << "Fail to load depth image!" << endl;
        }

        if (idx == 0)
        {
            fusedCloud = image2PointCloud(color_im, depth_im, cameraParams);
            boost::shared_ptr<pcl::visualization::PCLVisualizer> viewer1;
            viewer1 = rgbVis(fusedCloud);
        }
        else
        {
            fusedCloud = pointCloudFusion(fusedCloud, color_im,depth_im, poses[idx], cameraParams);
        }
    }

    boost::shared_ptr<pcl::visualization::PCLVisualizer> viewer;
    viewer = rgbVis(fusedCloud);
    while (!viewer->wasStopped())
  {
    viewer->spinOnce(100);
    boost::this_thread::sleep(boost::posix_time::microseconds(100000));
  }
    pcl::io::savePCDFile( "fusedCloud.pcd", *fusedCloud );
    return 0;
}

第一幀點(diǎn)云


image.png

3幀點(diǎn)云融合


image.png

參考:

  1. https://mp.weixin.qq.com/s?__biz=MzIxOTczOTM4NA==&mid=2247486281&idx=1&sn=1b36bcfd9f492dabc44ae2f10562e040&chksm=97d7eedea0a067c89eb9b1e71f7cf5dd12410c8c81d43dc2a21f9c6f28babd7add017ad14705&scene=21#wechat_redirect
  2. https://blog.csdn.net/weixin_42905141/article/details/100765920
  3. 公眾號(hào):計(jì)算機(jī)視覺life
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市冷离,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌酒朵,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,123評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件结耀,死亡現(xiàn)場(chǎng)離奇詭異匙铡,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)鳖眼,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,031評(píng)論 2 384
  • 文/潘曉璐 我一進(jìn)店門钦讳,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人愿卒,你說(shuō)我怎么就攤上這事∏砜” “怎么了?”我有些...
    開封第一講書人閱讀 156,723評(píng)論 0 345
  • 文/不壞的土叔 我叫張陵搞动,是天一觀的道長(zhǎng)渣刷。 經(jīng)常有香客問我,道長(zhǎng)狮惜,這世上最難降的妖魔是什么碌识? 我笑而不...
    開封第一講書人閱讀 56,357評(píng)論 1 283
  • 正文 為了忘掉前任虱而,我火速辦了婚禮,結(jié)果婚禮上牡拇,老公的妹妹穿的比我還像新娘穆律。我一直安慰自己导俘,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,412評(píng)論 5 384
  • 文/花漫 我一把揭開白布辅髓。 她就那樣靜靜地躺著少梁,像睡著了一般。 火紅的嫁衣襯著肌膚如雪凯沪。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,760評(píng)論 1 289
  • 那天挺举,我揣著相機(jī)與錄音烘跺,去河邊找鬼。 笑死瞻佛,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的伤柄。 我是一名探鬼主播文搂,決...
    沈念sama閱讀 38,904評(píng)論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼笔喉!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起常挚,我...
    開封第一講書人閱讀 37,672評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤稽物,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后吼过,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,118評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡酱床,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,456評(píng)論 2 325
  • 正文 我和宋清朗相戀三年趟佃,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片揖闸。...
    茶點(diǎn)故事閱讀 38,599評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡汤纸,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出贮泞,到底是詐尸還是另有隱情,我是刑警寧澤啃擦,帶...
    沈念sama閱讀 34,264評(píng)論 4 328
  • 正文 年R本政府宣布令蛉,位于F島的核電站聚霜,受9級(jí)特大地震影響珠叔,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜姥芥,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,857評(píng)論 3 312
  • 文/蒙蒙 一汇鞭、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧霍骄,春花似錦、人聲如沸玄坦。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,731評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)车伞。三九已至,卻和暖如春另玖,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背慷丽。 一陣腳步聲響...
    開封第一講書人閱讀 31,956評(píng)論 1 264
  • 我被黑心中介騙來(lái)泰國(guó)打工鳄哭, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人妆丘。 一個(gè)月前我還...
    沈念sama閱讀 46,286評(píng)論 2 360
  • 正文 我出身青樓勺拣,卻偏偏與公主長(zhǎng)得像奶赠,于是被迫代替她去往敵國(guó)和親药有。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,465評(píng)論 2 348