ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Assertion 'px != 0' failed.
means that you're using a boost::shared_ptr
before it's initialized somewhere.
In particular, I notice that you're not initializing cloud_passthrough
anywhere. You should probably write a constructor for your Listener
class and initialize it there.