Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
iri_lidar_obstacle_detection
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
labrobotica
ros
navigation
3d_navigation
iri_lidar_obstacle_detection
Commits
80831386
Commit
80831386
authored
5 years ago
by
Sergi Hernandez
Browse files
Options
Downloads
Patches
Plain Diff
Added a lñaunch file for the nodelet version.
Improved the launch file of the node.
parent
9f2528b0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
launch/node.launch
+5
-3
5 additions, 3 deletions
launch/node.launch
launch/nodelet.launch
+26
-0
26 additions, 0 deletions
launch/nodelet.launch
with
31 additions
and
3 deletions
launch/node.launch
+
5
−
3
View file @
80831386
...
@@ -2,19 +2,21 @@
...
@@ -2,19 +2,21 @@
<launch>
<launch>
<arg
name=
"ns"
default=
"ana"
/>
<arg
name=
"ns"
default=
"ana"
/>
<arg
name=
"node_name"
default=
"lidar_obstacle_detector"
/>
<arg
name=
"config_file"
default=
"$(find iri_lidar_obstacle_detector)/config/default_config.yaml"
/>
<arg
name=
"output"
default=
"screen"
/>
<arg
name=
"output"
default=
"screen"
/>
<arg
name=
"launch_prefix"
default=
""
/>
<arg
name=
"launch_prefix"
default=
""
/>
<arg
name=
"cloud_in"
default=
""
/>
<arg
name=
"cloud_in"
default=
"
~pointcloud_in
"
/>
<group
ns=
"$(arg ns)"
>
<group
ns=
"$(arg ns)"
>
<node
pkg =
"iri_lidar_obstacle_detector"
<node
pkg =
"iri_lidar_obstacle_detector"
type=
"iri_lidar_obstacle_detector"
type=
"iri_lidar_obstacle_detector"
name=
"
lidar_obstacle_detector
"
name=
"
$(arg node_name)
"
output=
"$(arg output)"
output=
"$(arg output)"
launch-prefix=
"$(arg launch_prefix)"
>
launch-prefix=
"$(arg launch_prefix)"
>
<remap
from=
"~pointcloud_in"
to=
"$(arg cloud_in)"
/>
<remap
from=
"~pointcloud_in"
to=
"$(arg cloud_in)"
/>
<param
name=
"base_frame_id"
value=
"/ana/base_footprint
"
/>
<
ros
param
file=
"$(arg config_file)"
command=
"load
"
/>
</node>
</node>
</group>
</group>
...
...
This diff is collapsed.
Click to expand it.
launch/nodelet.launch
0 → 100644
+
26
−
0
View file @
80831386
<?xml version="1.0" encoding="UTF-8"?>
<launch>
<arg
name=
"ns"
default=
"ana"
/>
<arg
name=
"node_name"
default=
"lidar_obstacle_detector"
/>
<arg
name=
"lidar_nodelet_manager"
default=
"lidar_nodelet_manager"
/>
<arg
name=
"config_file"
default=
"$(find iri_lidar_obstacle_detector)/config/default_config.yaml"
/>
<arg
name=
"output"
default=
"screen"
/>
<arg
name=
"launch_prefix"
default=
""
/>
<arg
name=
"cloud_in"
default=
"~pointcloud_in"
/>
<group
ns=
"$(arg ns)"
>
<node
name=
"$(arg node_name)"
pkg=
"nodelet"
type=
"nodelet"
args=
"load iri_lidar_obstacle_detector/LidarObstacleDetectorAlgNodelet $(arg lidar_nodelet_manager)"
output=
"screen"
>
<remap
from=
"~pointcloud_in"
to=
"$(arg cloud_in)"
/>
<rosparam
file=
"$(arg config_file)"
command=
"load"
/>
</node>
</group>
</launch>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment