在Creo 4.0中高效显示点云数据的方法

源文件:test.pcd

pcd->pts方法:

#include <iostream>#include <fstream>#include <pcl\io\pcd_io.h> typedef pcl::PointCloud<pcl::PointXYZ> PointCloud;typedef pcl::PointCloud<pcl::PointXYZ>::Ptr PointCloudPtr; void writePTS(std::string filename, PointCloudPtr cloud){	ofstream of;	of.open(filename);	size_t num = cloud->points.size();	if (num == 0)	{	}	else	{ 		for (size_t i = 0; i < num; i++)		{			double x = cloud->points[i].x;			double y = cloud->points[i].y;			double z = cloud->points[i].z;			string s = std::to_string(x) + " " + std::to_string(y) + " " + std::to_string(z);			of << s << std::endl;		}	}	of.close();}int main(){	PointCloudPtr cloud(new PointCloud);	std::string pcdfilename = "test.pcd";	if (pcl::io::loadPCDFile(pcdfilename, *cloud) == -1)	{		std::cout << "Could not open pcd file " << std::endl;      		return -1;	}  	std::string filestring = "D://test.pts"; 	writePTS(filestring, cloud);	return 0;}

Creo显示pts:


在获取数据下点击导入按钮,选中test.pts,确认即可。




免责声明:本文系网络转载或改编,未找到原创作者,版权归原作者所有。如涉及版权,请联系删

QR Code
微信扫一扫,欢迎咨询~

联系我们
武汉格发信息技术有限公司
湖北省武汉市经开区科技园西路6号103孵化器
电话:155-2731-8020 座机:027-59821821
邮件:tanzw@gofarlic.com
Copyright © 2023 Gofarsoft Co.,Ltd. 保留所有权利
遇到许可问题?该如何解决!?
评估许可证实际采购量? 
不清楚软件许可证使用数据? 
收到软件厂商律师函!?  
想要少购买点许可证,节省费用? 
收到软件厂商侵权通告!?  
有正版license,但许可证不够用,需要新购? 
联系方式 155-2731-8020
预留信息,一起解决您的问题
* 姓名:
* 手机:

* 公司名称:

姓名不为空

手机不正确

公司不为空