├── CMakeLists.txt ├── README.md ├── config └── rrt_rl_navigation_rviz.rviz ├── launch ├── amcl.launch ├── real_set.launch ├── sim_set.launch ├── world.launch └── youbot_remote.launch ├── maps ├── loop_3_3 │ ├── map.pgm │ └── map.yaml └── space_4_7_1 │ ├── map.pgm │ ├── map.yaml │ ├── origin_map.pgm │ └── origin_map.yaml ├── models ├── object_can_015 │ ├── model.config │ └── model.sdf └── object_can_03 │ ├── model.config │ └── model.sdf ├── package.xml ├── script ├── config_set.py ├── dynamic_env.py ├── dynamic_object.py ├── env_utils.py ├── main.py ├── model.py ├── network.py ├── real_env.py ├── replaybuffer.py ├── rrt_planner_client.py └── scene_set.py └── worlds ├── loop_3_3 ├── model.config └── model.sdf └── space_4_7_1 ├── model.config └── model.sdf /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiyunevin/RL-RRT-Local-Planner/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiyunevin/RL-RRT-Local-Planner/HEAD/README.md -------------------------------------------------------------------------------- /config/rrt_rl_navigation_rviz.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiyunevin/RL-RRT-Local-Planner/HEAD/config/rrt_rl_navigation_rviz.rviz -------------------------------------------------------------------------------- /launch/amcl.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiyunevin/RL-RRT-Local-Planner/HEAD/launch/amcl.launch -------------------------------------------------------------------------------- /launch/real_set.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiyunevin/RL-RRT-Local-Planner/HEAD/launch/real_set.launch -------------------------------------------------------------------------------- /launch/sim_set.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiyunevin/RL-RRT-Local-Planner/HEAD/launch/sim_set.launch -------------------------------------------------------------------------------- /launch/world.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiyunevin/RL-RRT-Local-Planner/HEAD/launch/world.launch -------------------------------------------------------------------------------- /launch/youbot_remote.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiyunevin/RL-RRT-Local-Planner/HEAD/launch/youbot_remote.launch -------------------------------------------------------------------------------- /maps/loop_3_3/map.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiyunevin/RL-RRT-Local-Planner/HEAD/maps/loop_3_3/map.pgm -------------------------------------------------------------------------------- /maps/loop_3_3/map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiyunevin/RL-RRT-Local-Planner/HEAD/maps/loop_3_3/map.yaml -------------------------------------------------------------------------------- /maps/space_4_7_1/map.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiyunevin/RL-RRT-Local-Planner/HEAD/maps/space_4_7_1/map.pgm -------------------------------------------------------------------------------- /maps/space_4_7_1/map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiyunevin/RL-RRT-Local-Planner/HEAD/maps/space_4_7_1/map.yaml -------------------------------------------------------------------------------- /maps/space_4_7_1/origin_map.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiyunevin/RL-RRT-Local-Planner/HEAD/maps/space_4_7_1/origin_map.pgm -------------------------------------------------------------------------------- /maps/space_4_7_1/origin_map.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiyunevin/RL-RRT-Local-Planner/HEAD/maps/space_4_7_1/origin_map.yaml -------------------------------------------------------------------------------- /models/object_can_015/model.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiyunevin/RL-RRT-Local-Planner/HEAD/models/object_can_015/model.config -------------------------------------------------------------------------------- /models/object_can_015/model.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiyunevin/RL-RRT-Local-Planner/HEAD/models/object_can_015/model.sdf -------------------------------------------------------------------------------- /models/object_can_03/model.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiyunevin/RL-RRT-Local-Planner/HEAD/models/object_can_03/model.config -------------------------------------------------------------------------------- /models/object_can_03/model.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiyunevin/RL-RRT-Local-Planner/HEAD/models/object_can_03/model.sdf -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiyunevin/RL-RRT-Local-Planner/HEAD/package.xml -------------------------------------------------------------------------------- /script/config_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiyunevin/RL-RRT-Local-Planner/HEAD/script/config_set.py -------------------------------------------------------------------------------- /script/dynamic_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiyunevin/RL-RRT-Local-Planner/HEAD/script/dynamic_env.py -------------------------------------------------------------------------------- /script/dynamic_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiyunevin/RL-RRT-Local-Planner/HEAD/script/dynamic_object.py -------------------------------------------------------------------------------- /script/env_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiyunevin/RL-RRT-Local-Planner/HEAD/script/env_utils.py -------------------------------------------------------------------------------- /script/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiyunevin/RL-RRT-Local-Planner/HEAD/script/main.py -------------------------------------------------------------------------------- /script/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiyunevin/RL-RRT-Local-Planner/HEAD/script/model.py -------------------------------------------------------------------------------- /script/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiyunevin/RL-RRT-Local-Planner/HEAD/script/network.py -------------------------------------------------------------------------------- /script/real_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiyunevin/RL-RRT-Local-Planner/HEAD/script/real_env.py -------------------------------------------------------------------------------- /script/replaybuffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiyunevin/RL-RRT-Local-Planner/HEAD/script/replaybuffer.py -------------------------------------------------------------------------------- /script/rrt_planner_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiyunevin/RL-RRT-Local-Planner/HEAD/script/rrt_planner_client.py -------------------------------------------------------------------------------- /script/scene_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiyunevin/RL-RRT-Local-Planner/HEAD/script/scene_set.py -------------------------------------------------------------------------------- /worlds/loop_3_3/model.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiyunevin/RL-RRT-Local-Planner/HEAD/worlds/loop_3_3/model.config -------------------------------------------------------------------------------- /worlds/loop_3_3/model.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiyunevin/RL-RRT-Local-Planner/HEAD/worlds/loop_3_3/model.sdf -------------------------------------------------------------------------------- /worlds/space_4_7_1/model.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiyunevin/RL-RRT-Local-Planner/HEAD/worlds/space_4_7_1/model.config -------------------------------------------------------------------------------- /worlds/space_4_7_1/model.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiyunevin/RL-RRT-Local-Planner/HEAD/worlds/space_4_7_1/model.sdf --------------------------------------------------------------------------------