├── LICENSE ├── README.ja.md ├── README.md ├── docs ├── mrp.png └── whill_auto_stop_node_graph.png └── whill_auto_stop ├── CMakeLists.txt ├── README.md ├── config ├── VLP16-velodyne_driver_node-params.yaml ├── VLP16-velodyne_transform_node-params.yaml └── auto_stop_area.yaml ├── launch ├── bringup_launch.py └── velodyne_launch.py ├── package.xml ├── rviz └── debug.rviz └── src ├── laserscan_filter_node.cpp └── twist_filter_node.cpp /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/ros2_whill_applications/HEAD/LICENSE -------------------------------------------------------------------------------- /README.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/ros2_whill_applications/HEAD/README.ja.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | README.ja.md -------------------------------------------------------------------------------- /docs/mrp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/ros2_whill_applications/HEAD/docs/mrp.png -------------------------------------------------------------------------------- /docs/whill_auto_stop_node_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/ros2_whill_applications/HEAD/docs/whill_auto_stop_node_graph.png -------------------------------------------------------------------------------- /whill_auto_stop/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/ros2_whill_applications/HEAD/whill_auto_stop/CMakeLists.txt -------------------------------------------------------------------------------- /whill_auto_stop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/ros2_whill_applications/HEAD/whill_auto_stop/README.md -------------------------------------------------------------------------------- /whill_auto_stop/config/VLP16-velodyne_driver_node-params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/ros2_whill_applications/HEAD/whill_auto_stop/config/VLP16-velodyne_driver_node-params.yaml -------------------------------------------------------------------------------- /whill_auto_stop/config/VLP16-velodyne_transform_node-params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/ros2_whill_applications/HEAD/whill_auto_stop/config/VLP16-velodyne_transform_node-params.yaml -------------------------------------------------------------------------------- /whill_auto_stop/config/auto_stop_area.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/ros2_whill_applications/HEAD/whill_auto_stop/config/auto_stop_area.yaml -------------------------------------------------------------------------------- /whill_auto_stop/launch/bringup_launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/ros2_whill_applications/HEAD/whill_auto_stop/launch/bringup_launch.py -------------------------------------------------------------------------------- /whill_auto_stop/launch/velodyne_launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/ros2_whill_applications/HEAD/whill_auto_stop/launch/velodyne_launch.py -------------------------------------------------------------------------------- /whill_auto_stop/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/ros2_whill_applications/HEAD/whill_auto_stop/package.xml -------------------------------------------------------------------------------- /whill_auto_stop/rviz/debug.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/ros2_whill_applications/HEAD/whill_auto_stop/rviz/debug.rviz -------------------------------------------------------------------------------- /whill_auto_stop/src/laserscan_filter_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/ros2_whill_applications/HEAD/whill_auto_stop/src/laserscan_filter_node.cpp -------------------------------------------------------------------------------- /whill_auto_stop/src/twist_filter_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whill-labs/ros2_whill_applications/HEAD/whill_auto_stop/src/twist_filter_node.cpp --------------------------------------------------------------------------------