Skip to content
This repository has been archived by the owner on Jul 20, 2018. It is now read-only.

rosnode to orocos component #4

Open
cfpperche2 opened this issue Mar 15, 2016 · 0 comments
Open

rosnode to orocos component #4

cfpperche2 opened this issue Mar 15, 2016 · 0 comments

Comments

@cfpperche2
Copy link

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.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant