hand_control/launch/essai-commande.launch

26 lines
915 B
Text
Raw Normal View History

2015-05-07 21:59:49 +00:00
<launch>
<node name="filtre_z" pkg="hand_control" type="filtre">
<remap from="/filtre/input" to="/random_pcl"/>
</node>
<param name="/publisher/freq" value="30.0" type="double" />
<param name="/publisher/length" value="50" type="int" />
<node name="publisher" pkg="hand_control" type="random_pcl_publisher" >
<remap from="/random/output" to="/random_pcl"/>
</node>
<node name="estimator" pkg="hand_control" type="normal_estimator">
<remap from="/estimator/input" to="/filtre/output"/>
</node>
<param name="/commande/min_number" value="5" type="int"/>
<param name="/commande/x_dev_min" value="0." type="double"/>
<param name="/commande/y_dev_min" value="0." type="double"/>
<param name="/commande/dz_dev_min" value="0." type="double"/>
<node name="commande" pkg="hand_control" type="commande">
<remap from="/commande/input" to="/estimator/output"/>
</node>
</launch>