forked from ros/catkin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add launch and lua files for quality evaluation pipelines. (ros#555)
- Loading branch information
Christoph Schütte
authored
Oct 27, 2017
1 parent
cf8e795
commit b1184b1
Showing
6 changed files
with
97 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
56 changes: 56 additions & 0 deletions
56
cartographer_ros/configuration_files/assets_writer_backpack_2d_ci.lua
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
-- Copyright 2016 The Cartographer Authors | ||
-- | ||
-- Licensed under the Apache License, Version 2.0 (the "License"); | ||
-- you may not use this file except in compliance with the License. | ||
-- You may obtain a copy of the License at | ||
-- | ||
-- http://www.apache.org/licenses/LICENSE-2.0 | ||
-- | ||
-- Unless required by applicable law or agreed to in writing, software | ||
-- distributed under the License is distributed on an "AS IS" BASIS, | ||
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
-- See the License for the specific language governing permissions and | ||
-- limitations under the License. | ||
|
||
-- WARNING: we create a lot of X-Rays of a potentially large space in this | ||
-- pipeline. For example, running over the | ||
-- cartographer_paper_deutsches_museum.bag requires ~25GiB of memory. You can | ||
-- reduce this by writing fewer X-Rays or upping VOXEL_SIZE - which is the size | ||
-- of a pixel in a X-Ray. | ||
VOXEL_SIZE = 5e-2 | ||
|
||
include "transform.lua" | ||
|
||
options = { | ||
tracking_frame = "base_link", | ||
pipeline = { | ||
{ | ||
action = "min_max_range_filter", | ||
min_range = 1., | ||
max_range = 60., | ||
}, | ||
{ | ||
action = "dump_num_points", | ||
}, | ||
{ | ||
action = "write_xray_image", | ||
voxel_size = VOXEL_SIZE, | ||
filename = "xray_yz_all", | ||
transform = YZ_TRANSFORM, | ||
}, | ||
{ | ||
action = "write_xray_image", | ||
voxel_size = VOXEL_SIZE, | ||
filename = "xray_xy_all", | ||
transform = XY_TRANSFORM, | ||
}, | ||
{ | ||
action = "write_xray_image", | ||
voxel_size = VOXEL_SIZE, | ||
filename = "xray_xz_all", | ||
transform = XZ_TRANSFORM, | ||
}, | ||
} | ||
} | ||
|
||
return options |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
-- Copyright 2017 The Cartographer Authors | ||
-- | ||
-- Licensed under the Apache License, Version 2.0 (the "License"); | ||
-- you may not use this file except in compliance with the License. | ||
-- You may obtain a copy of the License at | ||
-- | ||
-- http://www.apache.org/licenses/LICENSE-2.0 | ||
-- | ||
-- Unless required by applicable law or agreed to in writing, software | ||
-- distributed under the License is distributed on an "AS IS" BASIS, | ||
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
-- See the License for the specific language governing permissions and | ||
-- limitations under the License. | ||
|
||
XY_TRANSFORM = { | ||
translation = { 0., 0., 0. }, | ||
rotation = { 0., -math.pi / 2., 0., }, | ||
} | ||
|
||
XZ_TRANSFORM = { | ||
translation = { 0., 0., 0. }, | ||
rotation = { 0. , 0., -math.pi / 2, }, | ||
} | ||
|
||
YZ_TRANSFORM = { | ||
translation = { 0., 0., 0. }, | ||
rotation = { 0. , 0., math.pi, }, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters