Skip to content

Commit f0fc790

Browse files
authored
panorama tool (#114)
1 parent baf1917 commit f0fc790

7 files changed

Lines changed: 167 additions & 466 deletions

File tree

kalman_arc/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ endif()
99
find_package(ament_cmake REQUIRED)
1010
find_package(ament_cmake_python REQUIRED)
1111
ament_python_install_package(${PROJECT_NAME})
12+
ament_python_install_package(tools)
1213

1314
# Read ROS distro
1415
if($ENV{ROS_DISTRO} STREQUAL "humble")
@@ -178,6 +179,7 @@ rclcpp_components_register_node(
178179
install(PROGRAMS
179180
scripts/travel_distance_meter
180181
scripts/tunnel_follower
182+
scripts/panorama_360
181183
DESTINATION lib/${PROJECT_NAME}
182184
)
183185

kalman_arc/scripts/panorama_360

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/usr/bin/env python3
2+
3+
from tools.panorama_node import main
4+
if __name__ == '__main__':
5+
main()

kalman_arc/tools/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)