Skip to content

Commit

Permalink
aruco_detection.pyのsubscriptionのcallback関数名修正
Browse files Browse the repository at this point in the history
  • Loading branch information
mizonon committed Oct 25, 2024
1 parent 8eaf1e8 commit 9c982d7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ class ImageSubscriber(Node):
def __init__(self):
super().__init__("aruco_detection")
self.image_subscription = self.create_subscription(
Image, "image_raw", self.listener_callback, 10
Image, "image_raw", self.image_callback, 10
)
self.camera_info_subscription = self.create_subscription(
CameraInfo, "camera_info", self.listener_callback, 10
CameraInfo, "camera_info", self.camera_info_callback, 10
)
self.tf_broadcaster = tf2_ros.TransformBroadcaster()

Expand Down

0 comments on commit 9c982d7

Please sign in to comment.