ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Afaik importing msgs in Python would use the pattern:
from pkg_name.msgs import SomeMsg
In your case you'd probably have to adapt your import
line to use that pattern, or spec msgs.StereoCameraInfo
in your rospy.Subscriber(..)
line.
2 | No.2 Revision |
Afaik importing msgs in Python would use follow the pattern:
from pkg_name.msgs pkg_name.msg import SomeMsg
In your case you'd probably have to adapt your import
line to use that pattern, or spec
in your msgs.StereoCameraInfomsg.StereoCameraInforospy.Subscriber(..)
line.