当前位置:网站首页>PCL1.12 解决memory.h中EIGEN处中断问题
PCL1.12 解决memory.h中EIGEN处中断问题
2022-08-04 05:29:00 【视觉菜鸟Leonardo】
废话不多说,上大佬的文章
PCL中Ptr释放问题 aligned_free_winka9587的博客-CSDN博客
/** \internal Frees memory allocated with aligned_malloc. */
EIGEN_DEVICE_FUNC inline void aligned_free(void *ptr)
{
#if (EIGEN_DEFAULT_ALIGN_BYTES==0) || EIGEN_MALLOC_ALREADY_ALIGNED
EIGEN_USING_STD(free)
free(ptr);
#else
handmade_aligned_free(ptr);
#endif
}
解决办法:
VS:通过项目属性->C/C++->代码生成->启用增强指令集->选择AVX
解决办法:
VS:通过项目属性->C/C++->代码生成->启用增强指令集->选择AVX
事情的起因是这样的
我用的是PCL1.12.1版本,创建了一个函数,用来计算法向,然后我发现计算出的法向中有值为NaN的点,所以我想要看看这些点是哪些,pcl中有函数removeNaNNormalsFromPointCloud可以直接将这些点剔除,并且还能够返回这些点的下标。总之,因为以上的种种原因,我写出了下面的代码
xxx func(pcl::PointCloud<pcl::PointXYZ>::ConstPtr input_cloud)
{
pcl::PointCloud<pcl::Normal>::Ptr cloud_with_normals(new pcl::PointCloud<pcl::Normal>);
/*
计算法向
*/
pcl::PointCloud<pcl::Normal>::Ptr cloud_removeNan(new pcl::PointCloud<pcl::Normal>);
pcl::removeNaNNormalsFromPointCloud(*cloud_with_normals, *cloud_removeNan, indices);
return;
}
然后在 return的时候函数报错如下:
debug后发现问题出在 cloud_removeNan上,
如果替换为原始指针就能成功返回
pcl::PointCloud<pcl::Normal>::Ptr cloud_removeNan(new pcl::PointCloud<pcl::Normal>);
事情到这里就解决了,但是代码写的太多太长了,如果全部替换为原始指针能累死。
还有一个原因是因为PCL中很多函数的参数类型是Ptr
继续找,肯定有人跟我有一样的问题
https://github.com/PointCloudLibrary/pcl/issues/4859
上面的链接中提到通过启用AVX可以解决这个问题
提到CMake时添加选项来启用AVX:https://github.com/PointCloudLibrary/pcl/pull/4698
但是我的PCL是all in one安装的,不想再去CMake了。于是继续找VS有没有方法能够直接解决
/arch (x86) | Microsoft Docs
VS:通过项目属性->C/C++->代码生成->启用增强指令集->选择AVX
边栏推荐
- 判断字符串是否有子字符串重复出现
- 【go语言入门笔记】12、指针
- TensorFlow2 study notes: 7. Optimizer
- oracle的number与postgresql的numeric对比
- Thoroughly understand box plot analysis
- TensorFlow2 study notes: 6. Overfitting and underfitting, and their mitigation solutions
- 动手学深度学习__张量
- 剑指 Offer 2022/7/5
- [CV-Learning] Semantic Segmentation
- [Deep Learning 21 Days Learning Challenge] 1. My handwriting was successfully recognized by the model - CNN implements mnist handwritten digit recognition model study notes
猜你喜欢
完美解决keyby造成的数据倾斜导致吞吐量降低的问题
postgresql 游标(cursor)的使用
【CV-Learning】卷积神经网络
(十一)树--堆排序
Matplotlib中的fill_between;np.argsort()函数
【CV-Learning】Image Classification
Logistic Regression --- Introduction, API Introduction, Case: Cancer Classification Prediction, Classification Evaluation, and ROC Curve and AUC Metrics
MySQL事务详解(事务隔离级别、实现、MVCC、幻读问题)
视图、存储过程、触发器
k3s-轻量级Kubernetes
随机推荐
【CV-Learning】图像分类
TensorFlow2学习笔记:7、优化器
【CV-Learning】卷积神经网络预备知识
Transformer
剑指 Offer 2022/7/9
Androd Day02
TensorFlow2 study notes: 5. Common activation functions
PP-LiteSeg
Usage of RecyclerView
(十六)图的基本操作---两种遍历
postgresql 事务隔离级别与锁
动手学深度学习_卷积神经网络CNN
[Go language entry notes] 13. Structure (struct)
视图、存储过程、触发器
(五)栈及其应用
flink on yarn指定第三方jar包
线性回归02---波士顿房价预测
SQL练习 2022/7/3
pgsql函数中的return类型
[CV-Learning] Semantic Segmentation