1
我正在嘗試使用PCL/ROS執行分段任務。我在ROS中使用動態配置選項,因爲我的分段任務的輸入數量很大,並且希望研究每個param
的影響。我的C++源代碼沒有問題,但是當我嘗試運行啓動文件時,我的文件發佈者無法找到PCD文件。Ros動態配置文件
<launch>
<!-- Start segmentation analysis -->
<node pkg="segmentation_analysis" name="region_growing" type="region_growing" output="screen">
<remap from="selected_file" to="/selected_file" />
</node>
<node pkg="file_selection" name="file_publisher" type="file_publisher" args="/home/anirudh/getbot/ros/3d_scene_analysis/segmentation_analysis">
<param name="extension" value="pcd"/>
<remap from="~file" to="/selected_file"/>
</node>
<node pkg="rqt_reconfigure" name="rqt_reconfigure" type="rqt_reconfigure" >
</node>
但是當我運行的啓動文件,我收到以下錯誤:
ERROR: cannot launch node of type [file_selection/file_publisher]: can't locate node [file_publisher] in package [file_selection]
任何幫助將不勝感激。
對於ROS相關的問題有http://answers.ros.org –