Skip to content

Commit bf97e7a

Browse files
Add files via upload
1 parent 3b5d281 commit bf97e7a

33 files changed

+909
-0
lines changed

CMakeLists.txt

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
cmake_minimum_required(VERSION 3.0.2)
2+
project(grid_mapping)
3+
4+
## Find catkin and any catkin packages
5+
find_package(catkin REQUIRED COMPONENTS rospy std_msgs )
6+
7+
## Declare a catkin package
8+
catkin_package()
9+
10+
# Install python scripts
11+
catkin_install_python(PROGRAMS scripts/create_from_rosbag.py
12+
scripts/message_handler.py
13+
scripts/utils.py
14+
scripts/grid_map.py
15+
scripts/bresenham.py
16+
scripts/rtime_gmapping_node.py
17+
DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION}
18+
)
19+
20+
## Build talker and listener
21+
include_directories(include ${catkin_INCLUDE_DIRS})

bagfiles/house.bag

22.8 MB
Binary file not shown.

bagfiles/stage_1.bag

1.15 MB
Binary file not shown.

bagfiles/stage_2.bag

2.5 MB
Binary file not shown.

bagfiles/stage_4.bag

6.1 MB
Binary file not shown.

bagfiles/world.bag

5.81 MB
Binary file not shown.

maps/house.png

345 KB
Loading

maps/house_compared.png

318 KB
Loading

maps/house_grid_map.png

80 KB
Loading

maps/house_grid_map_mle.png

75.7 KB
Loading

0 commit comments

Comments
 (0)