ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

I solved this problem by

change this line sync.registerCallback(boost::bind(&callbackSubscriber, _1, _2)); into sync.registerCallback(boost::bind(& Perception::callbackSubscriber, this,_1, _2));

click to hide/show revision 2
No.2 Revision

I solved this problem by

change this line line

sync.registerCallback(boost::bind(&callbackSubscriber, _1, _2));

into

sync.registerCallback(boost::bind(& Perception::callbackSubscriber, this,_1, _2));

_2));