Skip to content

Commit

Permalink
remove qos_profile in message_filters subscribers (#420)
Browse files Browse the repository at this point in the history
  • Loading branch information
jelledouwe authored Mar 20, 2023
1 parent becc43c commit f2b5b05
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,8 @@ def __init__(
self.gem_learner.download(path=".", verbose=True)

# Subscribers
msg_rgb = message_filters.Subscriber(self, ROS_Image, input_rgb_image_topic, 1)
msg_ir = message_filters.Subscriber(self, ROS_Image, input_infra_image_topic, 1)
msg_rgb = message_filters.Subscriber(self, ROS_Image, input_rgb_image_topic)
msg_ir = message_filters.Subscriber(self, ROS_Image, input_infra_image_topic)

sync = message_filters.TimeSynchronizer([msg_rgb, msg_ir], 1)
sync.registerCallback(self.callback)
Expand Down

0 comments on commit f2b5b05

Please # to comment.