PCL针对点云处理的应用问题-pcd文件Data binary 转换为Data ascii

该代码段展示了如何将PCD文件中的数据从二进制格式转换为ASCII格式,并在转换过程中处理包含NaN点的情况。通过使用pcl库,程序读取文件,然后根据指定类型(ASCII、二进制或压缩二进制)保存文件。同时,通过pcl::removeNaNFromPointCloud函数移除含有NaN的点。
摘要由CSDN通过智能技术生成

一. PCD文件中Data binary 转换为Data ascii 

void pcdBinaryOrPcdASCII(std::string fileIn, std::string fileOut, int type, int precision)
{
    pcl::PCLPointCloud2 cloud;
    Eigen::Vector4f origin; 
    Eigen::Quaternionf orientation;

    //将文件中的数据读到cloud, origin, orientation中
    pcl::io::loadPCDFile(fileIn, cloud, origin, orientation);

    std::cerr << "Loaded a point cloud with " << cloud.width * cloud.height <<
        " points (total size is " << cloud.data.size() <<
        ") and the following channels: " << pcl::getFieldsList(cloud) << std::endl;

    pcl::PCDWriter w;
    if (type == 0)
    {
        std::cerr << "Saving file " << fileOut << " as ascii." << std::endl;
        w.writeASCII(fileOut, cloud, origin, orientation, precision);
    }
    else if (type == 1)
    {
        std::cerr << "Saving file " <
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值