Skip to content

Commit

Permalink
set default image_transport to raw, to keep current configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
k-okada committed Nov 8, 2023
1 parent 289984a commit ddd9d05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jsk_perception/node_scripts/draw_rects.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def __init__(self):
'use_classification_result'])
self.approximate_sync = rospy.get_param('~approximate_sync', DrawRectsConfig.defaults['approximate_sync'])
self.queue_size = rospy.get_param('~queue_size', DrawRectsConfig.defaults['queue_size'])
self.transport_hint = rospy.get_param('~image_transport', 'compressed')
self.transport_hint = rospy.get_param('~image_transport', 'raw')
rospy.loginfo("Using transport {}".format(self.transport_hint))
#
# To process latest message, we need to set buff_size must be large enough.
Expand Down

0 comments on commit ddd9d05

Please sign in to comment.