ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

I had to do this via a param not a remap.

Here is how I did it.

launch file

    <launch>
       <node name="pickable_object_detector" pkg="tensorflow_ros_tanooki" type="pickable_objects_detector_service.py" output="screen"> 
          <param name="recfg_name" value="$(arg recfg_remap)"/>
       </node>
    </launch>

python node

recfg_name = rospy.get_param('~recfg_name')
client = dynamic_reconfigure.client.Client(recfg_name, timeout=30)