ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Your error is saying that ego_points.cpp
is not a valid name (for example a Node name or Topic name).
In your file, when you call ros::init you try to set the node's name to ego_points.cpp
, but this isn't a valid name:
ros::init(argc, argv, "ego_points.cpp");
Maybe you can just use ego_points
as the node name instead:
ros::init(argc, argv, "ego_points");