ros-perception / image_common

Common code for working with images in ROS
http://www.ros.org/wiki/image_common
124 stars 219 forks source link

Register component for republish node in humble #314

Open khughes-bdai opened 3 months ago

khughes-bdai commented 3 months ago

On the rolling branch, a component is registered for the republish node (source):

#include "rclcpp_components/register_node_macro.hpp"

// Register the component with class_loader.
// This acts as a sort of entry point, allowing the component to be discoverable when its library
// is being loaded into a running process.
RCLCPP_COMPONENTS_REGISTER_NODE(image_transport::Republisher)

I would like to be able to use this in humble, but the component is not registered on that branch (source)