当前位置:网站首页>pcd转ply后在meshlab无法打开,提示 Error details: Unespected eof
pcd转ply后在meshlab无法打开,提示 Error details: Unespected eof
2022-07-06 08:22:00 【Will_Ye】
1. Problem
有一个pcd格式的点云文件,用pcd_viewer可以正常显示,但是想在meshlab里面做些编辑,发现无法打开,提示如下的错误
然后用vim或gedit来打开它,就会发现问题,有些点云文件很大,可能卡死在半路,但是我这个点云文件很小,用gedit test2.ply,显示如下:
可见,都是乱码的错误,所以可以推断,从pcd转成ply的过程处问题了。一般我们都是用pcl_pcd2ply ./1650511200.015289296.pcd ./test2.ply来转换pcd和ply,所以可以确定的是这个指令是没问题的,所以问题出在pcd文件那里。如果平时有留意导入pcd文件后,很多人都会做一个去除NAN值的操作,这一点其实很关键,因为在pcd文件里,确实会保存一些NAN值,而如果我们不先去除它们,直接转成ply文件,就会出现上述的情况,知道原因后,解决就简单了。
2. Solution
思路是:在pcd转ply前,先做一次去除NAN值操作,然后在进行转换,就没问题了。以下是实现代码:
int PCD2PLY_W_removeNAN(string pcdPath, string savePath)
pcl::PCLPointCloud2 cloud_ori;
if (loadPCDFile(pcdPath, cloud_ori) < 0)
{
cout << "Error: cannot load the PCD file!!!" << endl;
return -1;
}
// remove NaN type points
//依赖函数 #include <pcl/filters/filter.h>
std::vector<int> mapping;
pcl::removeNaNFromPointCloud(*cloud_ori, *cloud_ori, mapping);
string savePath = "/home/will/test1.ply";
pcl::PLYWriter writer;
writer.write(savePath,*cloud_ori);
return 0;
}
这时生成的test1.ply就能在meshlab顺利打开了。
边栏推荐
- [2022 广东省赛M] 拉格朗日插值 (多元函数极值 分治NTT)
- Make learning pointer easier (3)
- CISP-PTE实操练习讲解
- Easy to use tcp-udp_ Debug tool download and use
- "Designer universe" Guangdong responds to the opinions of the national development and Reform Commission. Primary school students incarnate as small community designers | national economic and Informa
- Artcube information of "designer universe": Guangzhou implements the community designer system to achieve "great improvement" of urban quality | national economic and Information Center
- Understanding of law of large numbers and central limit theorem
- matplotlib. Widgets are easy to use
- Leetcode question brushing (5.28) hash table
- Convolution, pooling, activation function, initialization, normalization, regularization, learning rate - Summary of deep learning foundation
猜你喜欢

The ECU of 21 Audi q5l 45tfsi brushes is upgraded to master special adjustment, and the horsepower is safely and stably increased to 305 horsepower
![[cloud native topic -45]:kubesphere cloud Governance - Introduction and overall architecture of enterprise container platform based on kubernetes](/img/ac/773ce8ee7f380df19edf8373250608.jpg)
[cloud native topic -45]:kubesphere cloud Governance - Introduction and overall architecture of enterprise container platform based on kubernetes

ESP系列引脚說明圖匯總

Ruffian Heng embedded bimonthly, issue 49

Summary of phased use of sonic one-stop open source distributed cluster cloud real machine test platform
![[research materials] 2022 China yuancosmos white paper - Download attached](/img/b4/422dff0510bbe67f3578202d6e80b7.jpg)
[research materials] 2022 China yuancosmos white paper - Download attached

Résumé des diagrammes de description des broches de la série ESP

leetcode刷题 (5.28) 哈希表

Nacos Development Manual

Wincc7.5 download and installation tutorial (win10 system)
随机推荐
wincc7.5下载安装教程(Win10系统)
TiDB备份与恢复简介
将 NFT 设置为 ENS 个人资料头像的分步指南
"Designer universe" APEC design +: the list of winners of the Paris Design Award in France was recently announced. The winners of "Changsha world center Damei mansion" were awarded by the national eco
logback1.3. X configuration details and Practice
Analysis of Top1 accuracy and top5 accuracy examples
CISP-PTE实操练习讲解
Let the bullets fly for a while
Learn Arduino with examples
Sort according to a number in a string in a column of CSV file
Pointer advanced --- pointer array, array pointer
NFT smart contract release, blind box, public offering technology practice -- contract
Nft智能合约发行,盲盒,公开发售技术实战--拼图篇
matplotlib. Widgets are easy to use
使用 TiDB Lightning 恢复 S3 兼容存储上的备份数据
From monomer structure to microservice architecture, introduction to microservices
"Designer universe" Guangdong responds to the opinions of the national development and Reform Commission. Primary school students incarnate as small community designers | national economic and Informa
Cisp-pte practice explanation
Artcube information of "designer universe": Guangzhou implements the community designer system to achieve "great improvement" of urban quality | national economic and Information Center
Yyds dry goods inventory three JS source code interpretation eventdispatcher