フィルターのクリア

How to check if global ROS node is already running in MATLAB?

7 ビュー (過去 30 日間)
Rahul Bhadani
Rahul Bhadani 2016 年 2 月 24 日
コメント済み: Thomas Stubbs 2023 年 1 月 27 日
Hi, I am using Robotics Toolbox to interface MATLAB and ROS. Before doing rosinit('http://192.68.0.43:11311') i want to check whether a Global Ros Node corresponding to it is running. What are the steps to accomplish that?

採用された回答

Marcelino Almeida
Marcelino Almeida 2017 年 3 月 22 日
編集済み: Marcelino Almeida 2017 年 3 月 22 日
I know it has been a long time, but I decided to post an answer here in case other people might be wondering how to do this.
Although there isn't much documentation on this, and this might not exist in future versions of the Robotics Toolbox, I've been able to check for node running through the following call:
robotics.ros.internal.Global.isNodeActive
The command above returns 1 if active, 0 if inactive.
  2 件のコメント
Alen Alempijevic
Alen Alempijevic 2020 年 9 月 22 日
This is a great hack, but access to the variable robotics.ros.internal.Global seems to be removed in 2019b. You can wrap the command in a try catch
try
rosinit
catch ME
fprintf(2,'%s\n',ME.message);
end
Thomas Stubbs
Thomas Stubbs 2023 年 1 月 27 日
I was able to do the Marcelino's solution in 2022b with a slight change:
ros.internal.Global.isNodeActive

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeNetwork Connection and Exploration についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by