pcl-learning icon indicating copy to clipboard operation
pcl-learning copied to clipboard

🔥PCL(Point Cloud Library)点云库学习记录

Results 10 pcl-learning issues
Sort by recently updated
recently updated
newest added

1、在keypoint章节和range image章节extract border部分,加载xxx.pcd文件后,都需要再加载一个xxx_far_ranges.pcd文件,xxx_far_ranges.pcd文件如何获得??? 2、如果我选择使用自动生成点云的方式进行后续操作,我的程序都会报错: No *.pcd file given => Generating example point cloud. 段错误 (核心已转储) 期待回复,感谢!

您好好像少了04search章节,请问能补上吗?谢谢

使用"../ism_train_cat.pcd" 文件时,结果保存数据为空;使用官方教程代码"../bun0.pcd"有输出。请问是因为mls的参数没调好吗?有没有遇到相同问题的呢?

当包含 #include 头文件时 编译报错严重性 错误 C2084 函数“int main(int,char **)”已有主体

![image](https://user-images.githubusercontent.com/20675770/96717047-7adb7b00-13d8-11eb-90f5-2e5e7be66e3a.png)

The following table describes the error when compiling ![image](https://github.com/HuangCongQing/pcl-learning/assets/54810996/ae51acf6-169a-4825-ba6e-f579dde5cced)

![QQ截图20230815130154](https://github.com/HuangCongQing/pcl-learning/assets/86670443/d51be96f-f210-4ebd-b593-f86a3c72de37) 具体错误如图所示,请问大佬这是为什么呢?

如题,我是初学者,发现特征的法向量代码那边汇报一个错误: ![image](https://github.com/HuangCongQing/pcl-learning/assets/39027951/04d7e841-b48d-4138-a0c1-bbed1014cc84) ![image](https://github.com/HuangCongQing/pcl-learning/assets/39027951/c1de50aa-ee2f-4ab6-b9b7-c47163b18266) 不知道啥原因,后面的很多例子都是这个问题

我在执行以下代码时,无法完全释放viewer指向的内存,每次循环大约6-8M内存泄漏,请问是调用方式有问题,还是释放方式不对。谢谢。 while(true){ pcl::visualization::PCLVisualizer::Ptr viewer(new pcl::visualization::PCLVisualizer("")); viewer->close(); // 关闭窗口 viewer.reset(); // 显式释放 }