ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
The problem here is at the subscriber attribution, you must pass a function pointer to it using the '&' before the method name. If you replace the subscriber attribution line for the following, it may solves your problem:
sub=it.subscribe("/sensors/camera/top/image_raw",1, &Imtest::callbackSubscriber);
Waiting for reply.
2 | No.2 Revision |
The problem here is at the subscriber attribution, you must pass a function pointer to it using the '&' before the method name. If you replace the subscriber attribution line for the following, it may solves your problem:
sub=it.subscribe("/sensors/camera/top/image_raw",1, &Imtest::callbackSubscriber);
&Imtest::callbackSubscriber, this);
Waiting for reply.
3 | No.3 Revision |
The problem here is at the subscriber attribution, you must pass a function pointer to it using the '&' before the method name.
If you replace the subscriber attribution line for the following, it may solves your problem:
problem:
sub=it.subscribe("/sensors/camera/top/image_raw",1, &Imtest::callbackSubscriber, this);
Waiting for reply.
4 | No.4 Revision |
The problem here is at the subscriber attribution, you must pass a function pointer to it using the '&' before the method name.
If you replace the subscriber attribution line for the following, it may solves your problem:
problem:
sub=it.subscribe("/sensors/camera/top/image_raw",1, &Imtest::callbackSubscriber, this);
this);
Waiting for reply.
5 | No.5 Revision |
The problem here is at the subscriber attribution, you must pass a function pointer to it using the '&' before the method name. If you replace the subscriber attribution line for the following, it may solves your problem:
sub=it.subscribe("/sensors/camera/top/image_raw",1, &Imtest::callbackSubscriber, Waiting for reply.