This line installs the launch file but does not install the parameters file.
|
ament_auto_package(INSTALL_TO_SHARE launch) |
So a user has to use symlink build to launch the node or to copy the file himself.
ament_auto_package(INSTALL_TO_SHARE launch params)
solves the issue
This line installs the launch file but does not install the parameters file.
isaac_ros_object_detection/isaac_ros_detectnet/CMakeLists.txt
Line 83 in 237774a
So a user has to use symlink build to launch the node or to copy the file himself.
ament_auto_package(INSTALL_TO_SHARE launch params)solves the issue