Bag file to run the image stream from ARDRONE - rostopic suggestion needed
问题 I am new to ROS. I am working on a video feed from ARDRONE but I am not able to stream the video. Should I have to change the topics in publisher and subscriber to stream the video ??? It is mentioned that I have to use bag file to stream. My publisher and subscriber nodes are the following : def __init__(self): self.image_pub = rospy.Publisher("image_topic_2",Image,queue_size=10) self.bridge = CvBridge() self.image_sub = rospy.Subscriber("image_topic",Image,self.callback) def callback(self