Skip to content

Commit

Permalink
[FIX] rm extra commented code in initialize.py for auto-respawning tr…
Browse files Browse the repository at this point in the history
…ackdlo
  • Loading branch information
hollydinkel committed Oct 30, 2023
1 parent b77d80f commit 4f41f7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trackdlo/src/initialize.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ def callback (rgb, depth):
header.stamp = rospy.Time.now()
converted_points = pcl2.create_cloud(header, fields, pc_colored)
pc_pub.publish(converted_points)
# rospy.signal_shutdown('Finished initial node set computation.')
except:
rospy.logerr("Failed to extract splines.")
rospy.signal_shutdown('Stopping initialization.')
Expand Down Expand Up @@ -160,7 +161,6 @@ def callback (rgb, depth):
camera_info_sub = rospy.Subscriber(camera_info_topic, CameraInfo, camera_info_callback)
rgb_sub = message_filters.Subscriber(rgb_topic, Image)
depth_sub = message_filters.Subscriber(depth_topic, Image)
trackdlo_sub = rospy.Subscriber('/trackdlo/results_pc', PointCloud2, received_new_messages)

# header
header = std_msgs.msg.Header()
Expand Down

0 comments on commit 4f41f7b

Please sign in to comment.