We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Hello, I need help to transform a node ros into a component orocos. Why I need is turn this ros node file to a component orocos.
#include <ros/ros.h> #include <image_transport/image_transport.h> #include <sensor_msgs/image_encodings.h> #include "RoadLineProcessing.hpp" int main(int argc, char **argv) { ros::init(argc, argv, "image_listener"); ros::NodeHandle nh; image_transport::ImageTransport it(nh); RoadLineProcessing myRoad(nh); image_transport::Subscriber sub = it.subscribe("/image_raw", 1,boost::bind(&RoadLineProcessing::imageCallback, &myRoad, _1)); ros::spin(); return 0; }
Exists any way to do this ?
Thanks.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello, I need help to transform a node ros into a component orocos.
Why I need is turn this ros node file to a component orocos.
Exists any way to do this ?
Thanks.
The text was updated successfully, but these errors were encountered: