-
Notifications
You must be signed in to change notification settings - Fork 652
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Too many nodes with same name #9146
Comments
@LuZhishan Thanks for your suggestion.
|
@cyn-liu |
FYI recently I was implementing something similar and I just followed same way as it is in ROS 2 geometry2 packages. It doesn't look nice but it works. I assume this approach might be good for packages with multiple instances. |
Perhaps method ROS 2 geometry2 packages is effective, but it is not the best choice in this node. In node tensorrt_yolox, object |
Checklist
Description
When I launch many yolox node with
multiple_yolox.launch.xml
here, there will be many node with same nameExpected behavior
There should be many node with different names
Actual behavior
Steps to reproduce
multiple_yolox.launch.xml
Versions
Possible causes
No response
Additional context
There are two ways to solve this problem
The first one, change node name of tensorrt_yolox to
$(anon tensorrt_yolox)
, and image_transport_decompressor_node to$(anon image_transport_decompressor_node)
The second one, add a param passed form uper launch named
tensorrt_yolox_1
for example.The text was updated successfully, but these errors were encountered: