You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running cameracheck from the camera_calibration package in ROS2 Jazzy, it subscribes to an image topic only once, performs the check, and then terminates. This behavior might be fine if the calibration board is always visible at the time of launch. However, it is quite inconvenient when the board needs to be moved into view after starting the node.
Additionally, the results are output via print(), which may not be visible when launched through a launch file or similar methods. It would be better to use the ROS logger for consistent and accessible logging.
The text was updated successfully, but these errors were encountered:
When running
cameracheck
from thecamera_calibration
package in ROS2 Jazzy, it subscribes to an image topic only once, performs the check, and then terminates. This behavior might be fine if the calibration board is always visible at the time of launch. However, it is quite inconvenient when the board needs to be moved into view after starting the node.image_pipeline/camera_calibration/src/camera_calibration/camera_checker.py
Lines 77 to 82 in bb4ab63
Additionally, the results are output via
print()
, which may not be visible when launched through a launch file or similar methods. It would be better to use the ROS logger for consistent and accessible logging.The text was updated successfully, but these errors were encountered: