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 starting the image_publisher node, the filename parameter is ignored and the camera_info_url can only be set after the node is up using the ros2 set param command. Moreover filename is not declared in the image_publisher component but only in the image_publisher_node application which makes it impossible to use as a ComposableNode.
This requires some changes in the way parameters are handle when the node is created and in the on_set_parameters_callback.
The text was updated successfully, but these errors were encountered:
The node part works with both parameter or command line arg:
ros2 run image_publisher image_publisher_node --ros-args -p filename:=test.png
ros2 run image_publisher image_publisher_node test.png
It does appear that filename is not properly defined when using the component alone, and also that the callback is not called on startup when using the component - should be fixed by #861
When starting the image_publisher node, the filename parameter is ignored and the camera_info_url can only be set after the node is up using the ros2 set param command. Moreover filename is not declared in the image_publisher component but only in the image_publisher_node application which makes it impossible to use as a ComposableNode.
This requires some changes in the way parameters are handle when the node is created and in the on_set_parameters_callback.
The text was updated successfully, but these errors were encountered: