Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
iri_rosnav
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
iri_rosnav
Commits
c6b3244b
Commit
c6b3244b
authored
5 years ago
by
Fernando Herrero
Browse files
Options
Downloads
Patches
Plain Diff
Add pointcloud_to_laserscan launch and yaml file
parent
fd0874d2
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
launch/include/pointcloud_to_laserscan.launch
+26
-0
26 additions, 0 deletions
launch/include/pointcloud_to_laserscan.launch
params/pointcloud_to_laserscan.yaml
+18
-0
18 additions, 0 deletions
params/pointcloud_to_laserscan.yaml
with
44 additions
and
0 deletions
launch/include/pointcloud_to_laserscan.launch
0 → 100644
+
26
−
0
View file @
c6b3244b
<?xml version="1.0"?>
<!-- -->
<launch>
<arg
name=
"ns"
default=
"robot"
/>
<arg
name=
"config_file"
default=
"$(find iri_rosnav)/params/pointcloud_to_laserscan.yaml"
/>
<arg
name=
"scan_topic"
default=
"$(arg ns)/scan"
/>
<arg
name=
"cloud_topic"
default=
"$(arg ns)/points"
/>
<arg
name=
"output"
default=
"screen"
/>
<arg
name=
"launch_prefix"
default=
""
/>
<group
ns=
"$(arg ns)"
>
<node
name=
"pointcloud_to_laserscan"
pkg =
"pointcloud_to_laserscan"
type=
"pointcloud_to_laserscan_node"
output=
"$(arg output)"
launch-prefix=
"$(arg launch_prefix)"
>
<remap
from=
"/$(arg ns)/scan"
to=
"$(arg scan_topic)"
/>
<remap
from=
"/$(arg ns)/cloud_in"
to=
"$(arg cloud_topic)"
/>
<rosparam
file=
"$(arg config_file)"
command=
"load"
/>
</node>
</group>
</launch>
This diff is collapsed.
Click to expand it.
params/pointcloud_to_laserscan.yaml
0 → 100644
+
18
−
0
View file @
c6b3244b
target_frame
:
"
"
# Leave target_frame disabled to output scan in pointcloud frame
transform_tolerance
:
0.1
min_height
:
-0.1
max_height
:
0.5
angle_min
:
-3.14159
#-1.5708 # -M_PI/2
angle_max
:
3.14159
#1.5708 # M_PI/2
angle_increment
:
0.00335
# M_PI/360.0
scan_time
:
0.3333
range_min
:
0.1
range_max
:
40.0
use_inf
:
true
# Concurrency level, affects number of pointclouds queued for processing and number of threads used
# 0 : Detect number of cores
# 1 : Single threaded
# 2->inf : Parallelism level
concurrency_level
:
1
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