PCL点云显示

本文介绍如何利用PCL库实现点云数据的加载与显示。通过C++代码示例,展示了设置背景颜色、添加球体元素及文本等操作,并实现了点云文件的加载与渲染。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

利用pcl库来显示点云

1. CMakeLists.txt

cmake_minimum_required(VERSION 2.8 FATAL_ERROR)  
  
project(show_pointcloud)  
  
find_package(PCL 1.7 REQUIRED)  
  
include_directories(${PCL_INCLUDE_DIRS})  
link_directories(${PCL_LIBRARY_DIRS})  
add_definitions(${PCL_DEFINITIONS})  
  
add_executable (show_pointcloud show_pointcloud.cpp)  
target_link_libraries (show_pointcloud ${PCL_LIBRARIES}) 

2. show_pointcloud.cpp

    #include <pcl/visualization/cloud_viewer.h>  
    #include <iostream>  
    #include <pcl/io/io.h>  
    #include <pcl/io/pcd_io.h>  
          
    int user_data;  
          
    void   
    viewerOneOff (pcl::visualization::PCLVisualizer& viewer)  
    {  
        viewer.setBackgroundColor (1.0, 0.5, 1.0);
        pcl::PointXYZ o;  
        o.x = 1.0;  
        o.y = 0;  
        o.z = 0;  
        viewer.addSphere (o, 0.25, "sphere", 0);  
        std::cout << "i only run once" << std::endl;  
          
    }  
          
    void   
    viewerPsycho (pcl::visualization::PCLVisualizer& viewer)  
    {  
        static unsigned count = 0;  
        std::stringstream ss;  
        ss << "Once per viewer loop: " << count++;  
        viewer.removeShape ("text", 0);  
        viewer.addText (ss.str(), 200, 300, "text", 0);  
          
        //FIXME: possible race condition here:  
        user_data++;  
    }  
          
    int   
    main ()  
    {  
        pcl::PointCloud<pcl::PointXYZRGBA>::Ptr cloud (new pcl::PointCloud<pcl::PointXYZRGBA>);  
        pcl::io::loadPCDFile ("./../map.pcd", *cloud);
          
        pcl::visualization::CloudViewer viewer("Cloud Viewer");  
          
        //blocks until the cloud is actually rendered  
        viewer.showCloud(cloud);  
          
        //use the following functions to get access to the underlying more advanced/powerful  
        //PCLVisualizer  
          
        //This will only get called once  
        viewer.runOnVisualizationThreadOnce (viewerOneOff);  
          
        //This will get called once per visualization iteration  
        viewer.runOnVisualizationThread (viewerPsycho);  
        while (!viewer.wasStopped ())  
        {  
        //you can also do cool processing here  
        //FIXME: Note that this is running in a separate thread from viewerPsycho  
        //and you should guard against race conditions yourself...  
        user_data++;  
        }  
        return 0;  
    }  

3. 显示的结果


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值