PCL编程笔记——Assertion `px != 0' failed.
作者:互联网
报错: boost::shared_ptr……Assertion `px != 0' failed.
原因:智能指针未初始化。
处理:初始化。
如
PointCloudT::Ptr cloud;
编译可通过,但是程序运行时会报出上述错误,经过如下初始化后,报错消失。
PointCloudT::Ptr cloud=boost::make_shared <PointCloudT> ();
原文链接:https://blog.csdn.net/breeze5428/article/details/31739211
标签:初始化,px,PointCloudT,Assertion,failed,报错,cloud 来源: https://blog.csdn.net/xiachong27/article/details/104904647