ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
I have needed to do a similar launching process,and I found two possible methods. Two possible methods:
Obviously, 1 is more desirable. But I ended up using 2 as its more stable, at least that is what I found
For 2, in C++ you could use the system command. In python you can use os.system or more advisably subprocess library
I hope this helpful
Guy
2 | No.2 Revision |
I have needed to do a similar launching process,and I found two possible methods. Two possible methods:
Obviously, 1 is more desirable. But I ended up using 2 as its more stable, at least that is what I found
For 2, in C++ you could use the system command. In python you can use os.system or more advisably subprocess library
I hope this helpfulhelpful. SORRY it wouldnt let me leave it as an answer
Guy