├── .catkin_workspace ├── README.md ├── cartographer ├── .bazelci │ └── presubmit.yml ├── .bazelrc ├── .dockerignore ├── .github │ └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── AUTHORS ├── BUILD.bazel ├── CHANGELOG.rst ├── CMakeLists.txt ├── CONTRIBUTING.md ├── Dockerfile.jessie ├── Dockerfile.stretch ├── Dockerfile.trusty ├── Dockerfile.trusty.bazel ├── Dockerfile.xenial ├── LICENSE ├── README.rst ├── RELEASING.rst ├── WORKSPACE ├── azure-pipelines.yml ├── bazel │ ├── repositories.bzl │ └── third_party │ │ ├── BUILD.bazel │ │ ├── cairo │ │ ├── BUILD.bazel │ │ ├── cairo-features.h │ │ ├── cairo.BUILD │ │ └── config.h │ │ ├── ceres.BUILD │ │ ├── eigen.BUILD │ │ ├── expat.BUILD │ │ ├── fontconfig │ │ ├── BUILD.bazel │ │ ├── config.h │ │ └── fontconfig.BUILD │ │ ├── freetype2.BUILD │ │ ├── gd.BUILD │ │ ├── libjpeg.BUILD │ │ ├── libpng.BUILD │ │ ├── lua.BUILD │ │ ├── pixman │ │ ├── BUILD.bazel │ │ ├── config.h │ │ └── pixman.BUILD │ │ └── zlib.BUILD ├── cartographer-config.cmake.in ├── cartographer │ ├── .clang-format │ ├── BUILD.bazel │ ├── cloud │ │ ├── BUILD.bazel │ │ ├── client │ │ │ ├── map_builder_stub.cc │ │ │ └── map_builder_stub.h │ │ ├── internal │ │ │ ├── client │ │ │ │ ├── pose_graph_stub.cc │ │ │ │ ├── pose_graph_stub.h │ │ │ │ ├── trajectory_builder_stub.cc │ │ │ │ └── trajectory_builder_stub.h │ │ │ ├── client_server_test.cc │ │ │ ├── handlers │ │ │ │ ├── add_fixed_frame_pose_data_handler.cc │ │ │ │ ├── add_fixed_frame_pose_data_handler.h │ │ │ │ ├── add_fixed_frame_pose_data_handler_test.cc │ │ │ │ ├── add_imu_data_handler.cc │ │ │ │ ├── add_imu_data_handler.h │ │ │ │ ├── add_imu_data_handler_test.cc │ │ │ │ ├── add_landmark_data_handler.cc │ │ │ │ ├── add_landmark_data_handler.h │ │ │ │ ├── add_landmark_data_handler_test.cc │ │ │ │ ├── add_odometry_data_handler.cc │ │ │ │ ├── add_odometry_data_handler.h │ │ │ │ ├── add_odometry_data_handler_test.cc │ │ │ │ ├── add_rangefinder_data_handler.cc │ │ │ │ ├── add_rangefinder_data_handler.h │ │ │ │ ├── add_rangefinder_data_handler_test.cc │ │ │ │ ├── add_sensor_data_batch_handler.cc │ │ │ │ ├── add_sensor_data_batch_handler.h │ │ │ │ ├── add_sensor_data_handler_base.h │ │ │ │ ├── add_trajectory_handler.cc │ │ │ │ ├── add_trajectory_handler.h │ │ │ │ ├── add_trajectory_handler_test.cc │ │ │ │ ├── delete_trajectory_handler.cc │ │ │ │ ├── delete_trajectory_handler.h │ │ │ │ ├── finish_trajectory_handler.cc │ │ │ │ ├── finish_trajectory_handler.h │ │ │ │ ├── get_all_submap_poses.cc │ │ │ │ ├── get_all_submap_poses.h │ │ │ │ ├── get_constraints_handler.cc │ │ │ │ ├── get_constraints_handler.h │ │ │ │ ├── get_landmark_poses_handler.cc │ │ │ │ ├── get_landmark_poses_handler.h │ │ │ │ ├── get_landmark_poses_handler_test.cc │ │ │ │ ├── get_local_to_global_transform_handler.cc │ │ │ │ ├── get_local_to_global_transform_handler.h │ │ │ │ ├── get_submap_handler.cc │ │ │ │ ├── get_submap_handler.h │ │ │ │ ├── get_trajectory_node_poses_handler.cc │ │ │ │ ├── get_trajectory_node_poses_handler.h │ │ │ │ ├── get_trajectory_states_handler.cc │ │ │ │ ├── get_trajectory_states_handler.h │ │ │ │ ├── is_trajectory_finished_handler.cc │ │ │ │ ├── is_trajectory_finished_handler.h │ │ │ │ ├── is_trajectory_frozen_handler.cc │ │ │ │ ├── is_trajectory_frozen_handler.h │ │ │ │ ├── load_state_from_file_handler.cc │ │ │ │ ├── load_state_from_file_handler.h │ │ │ │ ├── load_state_handler.cc │ │ │ │ ├── load_state_handler.h │ │ │ │ ├── receive_global_slam_optimizations_handler.cc │ │ │ │ ├── receive_global_slam_optimizations_handler.h │ │ │ │ ├── receive_local_slam_results_handler.cc │ │ │ │ ├── receive_local_slam_results_handler.h │ │ │ │ ├── run_final_optimization_handler.cc │ │ │ │ ├── run_final_optimization_handler.h │ │ │ │ ├── set_landmark_pose_handler.cc │ │ │ │ ├── set_landmark_pose_handler.h │ │ │ │ ├── set_landmark_pose_handler_test.cc │ │ │ │ ├── write_state_handler.cc │ │ │ │ ├── write_state_handler.h │ │ │ │ ├── write_state_to_file_handler.cc │ │ │ │ └── write_state_to_file_handler.h │ │ │ ├── local_trajectory_uploader.cc │ │ │ ├── local_trajectory_uploader.h │ │ │ ├── local_trajectory_uploader_test.cc │ │ │ ├── map_builder_context_impl.cc │ │ │ ├── map_builder_context_impl.h │ │ │ ├── map_builder_context_interface.h │ │ │ ├── map_builder_server.cc │ │ │ ├── map_builder_server.h │ │ │ ├── mapping │ │ │ │ ├── serialization.cc │ │ │ │ └── serialization.h │ │ │ ├── sensor │ │ │ │ ├── serialization.cc │ │ │ │ └── serialization.h │ │ │ └── testing │ │ │ │ ├── handler_test.h │ │ │ │ ├── mock_local_trajectory_uploader.h │ │ │ │ ├── mock_map_builder_context.h │ │ │ │ ├── test_helpers.cc │ │ │ │ └── test_helpers.h │ │ ├── map_builder_server_interface.cc │ │ ├── map_builder_server_interface.h │ │ ├── map_builder_server_main.cc │ │ ├── map_builder_server_options.cc │ │ ├── map_builder_server_options.h │ │ ├── metrics │ │ │ └── prometheus │ │ │ │ ├── family_factory.cc │ │ │ │ ├── family_factory.h │ │ │ │ └── metrics_test.cc │ │ └── proto │ │ │ ├── map_builder_server_options.proto │ │ │ └── map_builder_service.proto │ ├── common │ │ ├── blocking_queue.h │ │ ├── blocking_queue_test.cc │ │ ├── ceres_solver_options.cc │ │ ├── ceres_solver_options.h │ │ ├── config.h.cmake │ │ ├── configuration_file_resolver.cc │ │ ├── configuration_file_resolver.h │ │ ├── configuration_files_test.cc │ │ ├── fixed_ratio_sampler.cc │ │ ├── fixed_ratio_sampler.h │ │ ├── fixed_ratio_sampler_test.cc │ │ ├── histogram.cc │ │ ├── histogram.h │ │ ├── internal │ │ │ └── testing │ │ │ │ ├── thread_pool_for_testing.cc │ │ │ │ └── thread_pool_for_testing.h │ │ ├── lockless_queue.h │ │ ├── lockless_queue_test.cc │ │ ├── lua.h │ │ ├── lua_parameter_dictionary.cc │ │ ├── lua_parameter_dictionary.h │ │ ├── lua_parameter_dictionary_test.cc │ │ ├── lua_parameter_dictionary_test_helpers.h │ │ ├── math.h │ │ ├── math_test.cc │ │ ├── port.h │ │ ├── proto │ │ │ └── ceres_solver_options.proto │ │ ├── rate_timer.h │ │ ├── rate_timer_test.cc │ │ ├── task.cc │ │ ├── task.h │ │ ├── task_test.cc │ │ ├── thread_pool.cc │ │ ├── thread_pool.h │ │ ├── thread_pool_test.cc │ │ ├── time.cc │ │ ├── time.h │ │ └── utils.h │ ├── ground_truth │ │ ├── autogenerate_ground_truth.cc │ │ ├── autogenerate_ground_truth.h │ │ ├── autogenerate_ground_truth_main.cc │ │ ├── compute_relations_metrics_main.cc │ │ ├── proto │ │ │ └── relations.proto │ │ ├── relations_text_file.cc │ │ └── relations_text_file.h │ ├── io │ │ ├── color.cc │ │ ├── color.h │ │ ├── coloring_points_processor.cc │ │ ├── coloring_points_processor.h │ │ ├── counting_points_processor.cc │ │ ├── counting_points_processor.h │ │ ├── draw_trajectories.cc │ │ ├── draw_trajectories.h │ │ ├── fake_file_writer.cc │ │ ├── fake_file_writer.h │ │ ├── fake_file_writer_test.cc │ │ ├── file_writer.cc │ │ ├── file_writer.h │ │ ├── fixed_ratio_sampling_points_processor.cc │ │ ├── fixed_ratio_sampling_points_processor.h │ │ ├── frame_id_filtering_points_processor.cc │ │ ├── frame_id_filtering_points_processor.h │ │ ├── hybrid_grid_points_processor.cc │ │ ├── hybrid_grid_points_processor.h │ │ ├── image.cc │ │ ├── image.h │ │ ├── intensity_to_color_points_processor.cc │ │ ├── intensity_to_color_points_processor.h │ │ ├── internal │ │ │ ├── in_memory_proto_stream.cc │ │ │ ├── in_memory_proto_stream.h │ │ │ ├── in_memory_proto_stream_test.cc │ │ │ ├── mapping_state_serialization.cc │ │ │ ├── mapping_state_serialization.h │ │ │ ├── pbstream_info.cc │ │ │ ├── pbstream_info.h │ │ │ ├── pbstream_migrate.cc │ │ │ └── pbstream_migrate.h │ │ ├── min_max_range_filtering_points_processor.cc │ │ ├── min_max_range_filtering_points_processor.h │ │ ├── null_points_processor.h │ │ ├── outlier_removing_points_processor.cc │ │ ├── outlier_removing_points_processor.h │ │ ├── pbstream_main.cc │ │ ├── pcd_writing_points_processor.cc │ │ ├── pcd_writing_points_processor.h │ │ ├── ply_writing_points_processor.cc │ │ ├── ply_writing_points_processor.h │ │ ├── points_batch.cc │ │ ├── points_batch.h │ │ ├── points_processor.h │ │ ├── points_processor_pipeline_builder.cc │ │ ├── points_processor_pipeline_builder.h │ │ ├── points_processor_pipeline_builder_test.cc │ │ ├── probability_grid_points_processor.cc │ │ ├── probability_grid_points_processor.h │ │ ├── probability_grid_points_processor_test.cc │ │ ├── proto_stream.cc │ │ ├── proto_stream.h │ │ ├── proto_stream_deserializer.cc │ │ ├── proto_stream_deserializer.h │ │ ├── proto_stream_deserializer_test.cc │ │ ├── proto_stream_interface.h │ │ ├── proto_stream_test.cc │ │ ├── serialization_format_migration.cc │ │ ├── serialization_format_migration.h │ │ ├── serialization_format_migration_test.cc │ │ ├── submap_painter.cc │ │ ├── submap_painter.h │ │ ├── testing │ │ │ ├── test_helpers.cc │ │ │ └── test_helpers.h │ │ ├── xray_points_processor.cc │ │ ├── xray_points_processor.h │ │ ├── xyz_writing_points_processor.cc │ │ └── xyz_writing_points_processor.h │ ├── mapping │ │ ├── 2d │ │ │ ├── grid_2d.cc │ │ │ ├── grid_2d.h │ │ │ ├── map_limits.h │ │ │ ├── map_limits_test.cc │ │ │ ├── probability_grid.cc │ │ │ ├── probability_grid.h │ │ │ ├── probability_grid_range_data_inserter_2d.cc │ │ │ ├── probability_grid_range_data_inserter_2d.h │ │ │ ├── probability_grid_test.cc │ │ │ ├── range_data_inserter_2d_test.cc │ │ │ ├── submap_2d.cc │ │ │ ├── submap_2d.h │ │ │ ├── submap_2d_test.cc │ │ │ ├── tsd_value_converter.cc │ │ │ ├── tsd_value_converter.h │ │ │ ├── tsd_value_converter_test.cc │ │ │ ├── tsdf_2d.cc │ │ │ ├── tsdf_2d.h │ │ │ ├── tsdf_2d_test.cc │ │ │ ├── tsdf_range_data_inserter_2d.cc │ │ │ ├── tsdf_range_data_inserter_2d.h │ │ │ ├── tsdf_range_data_inserter_2d_test.cc │ │ │ ├── xy_index.h │ │ │ └── xy_index_test.cc │ │ ├── 3d │ │ │ ├── hybrid_grid.h │ │ │ ├── hybrid_grid_test.cc │ │ │ ├── range_data_inserter_3d.cc │ │ │ ├── range_data_inserter_3d.h │ │ │ ├── range_data_inserter_3d_test.cc │ │ │ ├── submap_3d.cc │ │ │ ├── submap_3d.h │ │ │ └── submap_3d_test.cc │ │ ├── detect_floors.cc │ │ ├── detect_floors.h │ │ ├── grid_interface.h │ │ ├── id.h │ │ ├── id_test.cc │ │ ├── imu_tracker.cc │ │ ├── imu_tracker.h │ │ ├── imu_tracker_test.cc │ │ ├── internal │ │ │ ├── 2d │ │ │ │ ├── local_slam_result_2d.cc │ │ │ │ ├── local_slam_result_2d.h │ │ │ │ ├── local_trajectory_builder_2d.cc │ │ │ │ ├── local_trajectory_builder_2d.h │ │ │ │ ├── local_trajectory_builder_options_2d.cc │ │ │ │ ├── local_trajectory_builder_options_2d.h │ │ │ │ ├── normal_estimation_2d.cc │ │ │ │ ├── normal_estimation_2d.h │ │ │ │ ├── normal_estimation_2d_test.cc │ │ │ │ ├── overlapping_submaps_trimmer_2d.cc │ │ │ │ ├── overlapping_submaps_trimmer_2d.h │ │ │ │ ├── overlapping_submaps_trimmer_2d_test.cc │ │ │ │ ├── pose_graph_2d.cc │ │ │ │ ├── pose_graph_2d.h │ │ │ │ ├── pose_graph_2d_test.cc │ │ │ │ ├── ray_to_pixel_mask.cc │ │ │ │ ├── ray_to_pixel_mask.h │ │ │ │ ├── ray_to_pixel_mask_test.cc │ │ │ │ └── scan_matching │ │ │ │ │ ├── ceres_scan_matcher_2d.cc │ │ │ │ │ ├── ceres_scan_matcher_2d.h │ │ │ │ │ ├── ceres_scan_matcher_2d_test.cc │ │ │ │ │ ├── correlative_scan_matcher_2d.cc │ │ │ │ │ ├── correlative_scan_matcher_2d.h │ │ │ │ │ ├── correlative_scan_matcher_test.cc │ │ │ │ │ ├── fast_correlative_scan_matcher_2d.cc │ │ │ │ │ ├── fast_correlative_scan_matcher_2d.h │ │ │ │ │ ├── fast_correlative_scan_matcher_2d_test.cc │ │ │ │ │ ├── interpolated_tsdf_2d.h │ │ │ │ │ ├── interpolated_tsdf_2d_test.cc │ │ │ │ │ ├── occupied_space_cost_function_2d.cc │ │ │ │ │ ├── occupied_space_cost_function_2d.h │ │ │ │ │ ├── occupied_space_cost_function_2d_test.cc │ │ │ │ │ ├── real_time_correlative_scan_matcher_2d.cc │ │ │ │ │ ├── real_time_correlative_scan_matcher_2d.h │ │ │ │ │ ├── real_time_correlative_scan_matcher_2d_test.cc │ │ │ │ │ ├── rotation_delta_cost_functor_2d.h │ │ │ │ │ ├── translation_delta_cost_functor_2d.h │ │ │ │ │ ├── tsdf_match_cost_function_2d.cc │ │ │ │ │ ├── tsdf_match_cost_function_2d.h │ │ │ │ │ └── tsdf_match_cost_function_2d_test.cc │ │ │ ├── 3d │ │ │ │ ├── imu_integration.h │ │ │ │ ├── local_slam_result_3d.cc │ │ │ │ ├── local_slam_result_3d.h │ │ │ │ ├── local_trajectory_builder_3d.cc │ │ │ │ ├── local_trajectory_builder_3d.h │ │ │ │ ├── local_trajectory_builder_3d_test.cc │ │ │ │ ├── local_trajectory_builder_options_3d.cc │ │ │ │ ├── local_trajectory_builder_options_3d.h │ │ │ │ ├── pose_graph_3d.cc │ │ │ │ ├── pose_graph_3d.h │ │ │ │ ├── pose_graph_3d_test.cc │ │ │ │ ├── rotation_parameterization.h │ │ │ │ └── scan_matching │ │ │ │ │ ├── ceres_scan_matcher_3d.cc │ │ │ │ │ ├── ceres_scan_matcher_3d.h │ │ │ │ │ ├── ceres_scan_matcher_3d_test.cc │ │ │ │ │ ├── fast_correlative_scan_matcher_3d.cc │ │ │ │ │ ├── fast_correlative_scan_matcher_3d.h │ │ │ │ │ ├── fast_correlative_scan_matcher_3d_test.cc │ │ │ │ │ ├── interpolated_grid.h │ │ │ │ │ ├── interpolated_grid_test.cc │ │ │ │ │ ├── low_resolution_matcher.cc │ │ │ │ │ ├── low_resolution_matcher.h │ │ │ │ │ ├── occupied_space_cost_function_3d.h │ │ │ │ │ ├── precomputation_grid_3d.cc │ │ │ │ │ ├── precomputation_grid_3d.h │ │ │ │ │ ├── precomputation_grid_3d_test.cc │ │ │ │ │ ├── real_time_correlative_scan_matcher_3d.cc │ │ │ │ │ ├── real_time_correlative_scan_matcher_3d.h │ │ │ │ │ ├── real_time_correlative_scan_matcher_3d_test.cc │ │ │ │ │ ├── rotation_delta_cost_functor_3d.h │ │ │ │ │ ├── rotation_delta_cost_functor_3d_test.cc │ │ │ │ │ ├── rotational_scan_matcher.cc │ │ │ │ │ ├── rotational_scan_matcher.h │ │ │ │ │ ├── rotational_scan_matcher_test.cc │ │ │ │ │ └── translation_delta_cost_functor_3d.h │ │ │ ├── collated_trajectory_builder.cc │ │ │ ├── collated_trajectory_builder.h │ │ │ ├── connected_components.cc │ │ │ ├── connected_components.h │ │ │ ├── connected_components_test.cc │ │ │ ├── constraints │ │ │ │ ├── constraint_builder.cc │ │ │ │ ├── constraint_builder.h │ │ │ │ ├── constraint_builder_2d.cc │ │ │ │ ├── constraint_builder_2d.h │ │ │ │ ├── constraint_builder_2d_test.cc │ │ │ │ ├── constraint_builder_3d.cc │ │ │ │ ├── constraint_builder_3d.h │ │ │ │ └── constraint_builder_3d_test.cc │ │ │ ├── global_trajectory_builder.cc │ │ │ ├── global_trajectory_builder.h │ │ │ ├── motion_filter.cc │ │ │ ├── motion_filter.h │ │ │ ├── motion_filter_test.cc │ │ │ ├── optimization │ │ │ │ ├── ceres_pose.cc │ │ │ │ ├── ceres_pose.h │ │ │ │ ├── cost_functions │ │ │ │ │ ├── acceleration_cost_function_3d.h │ │ │ │ │ ├── cost_helpers.h │ │ │ │ │ ├── cost_helpers_impl.h │ │ │ │ │ ├── landmark_cost_function_2d.h │ │ │ │ │ ├── landmark_cost_function_2d_test.cc │ │ │ │ │ ├── landmark_cost_function_3d.h │ │ │ │ │ ├── landmark_cost_function_3d_test.cc │ │ │ │ │ ├── rotation_cost_function_3d.h │ │ │ │ │ ├── spa_cost_function_2d.cc │ │ │ │ │ ├── spa_cost_function_2d.h │ │ │ │ │ ├── spa_cost_function_2d_test.cc │ │ │ │ │ └── spa_cost_function_3d.h │ │ │ │ ├── optimization_problem_2d.cc │ │ │ │ ├── optimization_problem_2d.h │ │ │ │ ├── optimization_problem_3d.cc │ │ │ │ ├── optimization_problem_3d.h │ │ │ │ ├── optimization_problem_3d_test.cc │ │ │ │ ├── optimization_problem_interface.h │ │ │ │ ├── optimization_problem_options.cc │ │ │ │ └── optimization_problem_options.h │ │ │ ├── range_data_collator.cc │ │ │ ├── range_data_collator.h │ │ │ ├── range_data_collator_test.cc │ │ │ ├── scan_matching │ │ │ │ ├── real_time_correlative_scan_matcher.cc │ │ │ │ └── real_time_correlative_scan_matcher.h │ │ │ ├── submap_controller.cc │ │ │ ├── submap_controller.h │ │ │ ├── testing │ │ │ │ ├── fake_trimmable.h │ │ │ │ ├── mock_map_builder.h │ │ │ │ ├── mock_pose_graph.h │ │ │ │ ├── mock_trajectory_builder.h │ │ │ │ ├── test_helpers.cc │ │ │ │ └── test_helpers.h │ │ │ ├── trajectory_connectivity_state.cc │ │ │ ├── trajectory_connectivity_state.h │ │ │ ├── trajectory_connectivity_state_test.cc │ │ │ └── work_queue.h │ │ ├── local_slam_result_data.h │ │ ├── map_builder.cc │ │ ├── map_builder.h │ │ ├── map_builder_interface.h │ │ ├── map_builder_test.cc │ │ ├── pose_extrapolator.cc │ │ ├── pose_extrapolator.h │ │ ├── pose_extrapolator_test.cc │ │ ├── pose_graph.cc │ │ ├── pose_graph.h │ │ ├── pose_graph_data.h │ │ ├── pose_graph_interface.h │ │ ├── pose_graph_test.cc │ │ ├── pose_graph_trimmer.cc │ │ ├── pose_graph_trimmer.h │ │ ├── pose_graph_trimmer_test.cc │ │ ├── probability_values.cc │ │ ├── probability_values.h │ │ ├── probability_values_test.cc │ │ ├── proto │ │ │ ├── 2d │ │ │ │ ├── cell_limits.proto │ │ │ │ ├── grid_2d.proto │ │ │ │ ├── grid_2d_options.proto │ │ │ │ ├── local_trajectory_builder_options_2d.proto │ │ │ │ ├── map_limits.proto │ │ │ │ ├── normal_estimation_options_2d.proto │ │ │ │ ├── probability_grid.proto │ │ │ │ ├── probability_grid_range_data_inserter_options_2d.proto │ │ │ │ ├── submaps_options_2d.proto │ │ │ │ ├── tsdf_2d.proto │ │ │ │ └── tsdf_range_data_inserter_options_2d.proto │ │ │ ├── 3d │ │ │ │ ├── hybrid_grid.proto │ │ │ │ ├── local_trajectory_builder_options_3d.proto │ │ │ │ ├── range_data_inserter_options_3d.proto │ │ │ │ └── submaps_options_3d.proto │ │ │ ├── connected_components.proto │ │ │ ├── internal │ │ │ │ ├── legacy_probability_grid.proto │ │ │ │ ├── legacy_serialized_data.proto │ │ │ │ └── legacy_submap.proto │ │ │ ├── map_builder_options.proto │ │ │ ├── motion_filter_options.proto │ │ │ ├── pose_graph.proto │ │ │ ├── pose_graph │ │ │ │ ├── constraint_builder_options.proto │ │ │ │ └── optimization_problem_options.proto │ │ │ ├── pose_graph_options.proto │ │ │ ├── range_data_inserter_options.proto │ │ │ ├── scan_matching │ │ │ │ ├── ceres_scan_matcher_options_2d.proto │ │ │ │ ├── ceres_scan_matcher_options_3d.proto │ │ │ │ ├── fast_correlative_scan_matcher_options_2d.proto │ │ │ │ ├── fast_correlative_scan_matcher_options_3d.proto │ │ │ │ └── real_time_correlative_scan_matcher_options.proto │ │ │ ├── serialization.proto │ │ │ ├── submap.proto │ │ │ ├── submap_visualization.proto │ │ │ ├── trajectory.proto │ │ │ ├── trajectory_builder_options.proto │ │ │ └── trajectory_node_data.proto │ │ ├── range_data_inserter_interface.cc │ │ ├── range_data_inserter_interface.h │ │ ├── submaps.h │ │ ├── submaps_test.cc │ │ ├── trajectory_builder_interface.cc │ │ ├── trajectory_builder_interface.h │ │ ├── trajectory_node.cc │ │ ├── trajectory_node.h │ │ ├── trajectory_node_test.cc │ │ ├── value_conversion_tables.cc │ │ ├── value_conversion_tables.h │ │ └── value_conversion_tables_test.cc │ ├── metrics │ │ ├── counter.cc │ │ ├── counter.h │ │ ├── family_factory.h │ │ ├── gauge.cc │ │ ├── gauge.h │ │ ├── histogram.cc │ │ ├── histogram.h │ │ ├── register.cc │ │ └── register.h │ ├── pose_graph │ │ ├── constraint │ │ │ ├── acceleration_constraint_3d.cc │ │ │ ├── acceleration_constraint_3d.h │ │ │ ├── acceleration_constraint_3d_test.cc │ │ │ ├── constraint.cc │ │ │ ├── constraint.h │ │ │ ├── constraint_utils.cc │ │ │ ├── constraint_utils.h │ │ │ ├── cost_function │ │ │ │ ├── acceleration_cost_3d.cc │ │ │ │ ├── acceleration_cost_3d.h │ │ │ │ ├── acceleration_cost_3d_test.cc │ │ │ │ ├── interpolated_relative_pose_cost_2d.cc │ │ │ │ ├── interpolated_relative_pose_cost_2d.h │ │ │ │ ├── interpolated_relative_pose_cost_2d_test.cc │ │ │ │ ├── interpolated_relative_pose_cost_3d.cc │ │ │ │ ├── interpolated_relative_pose_cost_3d.h │ │ │ │ ├── interpolated_relative_pose_cost_3d_test.cc │ │ │ │ ├── relative_pose_cost_2d.cc │ │ │ │ ├── relative_pose_cost_2d.h │ │ │ │ ├── relative_pose_cost_2d_test.cc │ │ │ │ ├── relative_pose_cost_3d.cc │ │ │ │ ├── relative_pose_cost_3d.h │ │ │ │ ├── relative_pose_cost_3d_test.cc │ │ │ │ ├── rotation_cost_3d.cc │ │ │ │ ├── rotation_cost_3d.h │ │ │ │ └── rotation_cost_3d_test.cc │ │ │ ├── interpolated_relative_pose_constraint_2d.cc │ │ │ ├── interpolated_relative_pose_constraint_2d.h │ │ │ ├── interpolated_relative_pose_constraint_2d_test.cc │ │ │ ├── interpolated_relative_pose_constraint_3d.cc │ │ │ ├── interpolated_relative_pose_constraint_3d.h │ │ │ ├── interpolated_relative_pose_constraint_3d_test.cc │ │ │ ├── loss_function │ │ │ │ ├── loss_function.cc │ │ │ │ ├── loss_function.h │ │ │ │ └── loss_function_test.cc │ │ │ ├── relative_pose_constraint_2d.cc │ │ │ ├── relative_pose_constraint_2d.h │ │ │ ├── relative_pose_constraint_2d_test.cc │ │ │ ├── relative_pose_constraint_3d.cc │ │ │ ├── relative_pose_constraint_3d.h │ │ │ ├── relative_pose_constraint_3d_test.cc │ │ │ ├── rotation_constraint_3d.cc │ │ │ ├── rotation_constraint_3d.h │ │ │ └── rotation_constraint_3d_test.cc │ │ ├── node │ │ │ ├── imu_calibration.cc │ │ │ ├── imu_calibration.h │ │ │ ├── imu_calibration_test.cc │ │ │ ├── node.cc │ │ │ ├── node.h │ │ │ ├── node_id.cc │ │ │ ├── node_id.h │ │ │ ├── node_id_test.cc │ │ │ ├── nodes.h │ │ │ ├── parameterization │ │ │ │ ├── parameterization.cc │ │ │ │ └── parameterization.h │ │ │ ├── pose_2d.cc │ │ │ ├── pose_2d.h │ │ │ ├── pose_2d_test.cc │ │ │ ├── pose_3d.cc │ │ │ ├── pose_3d.h │ │ │ └── pose_3d_test.cc │ │ ├── pose_graph_controller.cc │ │ ├── pose_graph_controller.h │ │ ├── pose_graph_data.cc │ │ ├── pose_graph_data.h │ │ ├── proto │ │ │ ├── constraint.proto │ │ │ ├── cost_function.proto │ │ │ ├── loss_function.proto │ │ │ ├── node.proto │ │ │ ├── pose_graph_data.proto │ │ │ └── solver_config.proto │ │ └── solver │ │ │ ├── ceres_solver.cc │ │ │ ├── ceres_solver.h │ │ │ ├── ceres_solver_test.cc │ │ │ └── solver.h │ ├── sensor │ │ ├── collator_interface.h │ │ ├── compressed_point_cloud.cc │ │ ├── compressed_point_cloud.h │ │ ├── compressed_point_cloud_test.cc │ │ ├── data.h │ │ ├── fixed_frame_pose_data.cc │ │ ├── fixed_frame_pose_data.h │ │ ├── imu_data.cc │ │ ├── imu_data.h │ │ ├── internal │ │ │ ├── collator.cc │ │ │ ├── collator.h │ │ │ ├── collator_test.cc │ │ │ ├── dispatchable.h │ │ │ ├── ordered_multi_queue.cc │ │ │ ├── ordered_multi_queue.h │ │ │ ├── ordered_multi_queue_test.cc │ │ │ ├── test_helpers.h │ │ │ ├── trajectory_collator.cc │ │ │ ├── trajectory_collator.h │ │ │ ├── trajectory_collator_test.cc │ │ │ ├── voxel_filter.cc │ │ │ ├── voxel_filter.h │ │ │ └── voxel_filter_test.cc │ │ ├── landmark_data.cc │ │ ├── landmark_data.h │ │ ├── landmark_data_test.cc │ │ ├── map_by_time.h │ │ ├── map_by_time_test.cc │ │ ├── odometry_data.cc │ │ ├── odometry_data.h │ │ ├── point_cloud.cc │ │ ├── point_cloud.h │ │ ├── point_cloud_test.cc │ │ ├── proto │ │ │ ├── adaptive_voxel_filter_options.proto │ │ │ └── sensor.proto │ │ ├── range_data.cc │ │ ├── range_data.h │ │ ├── range_data_test.cc │ │ ├── rangefinder_point.h │ │ ├── timed_point_cloud_data.cc │ │ └── timed_point_cloud_data.h │ ├── testing │ │ └── test_helpers.h │ └── transform │ │ ├── proto │ │ ├── timestamped_transform.proto │ │ └── transform.proto │ │ ├── rigid_transform.cc │ │ ├── rigid_transform.h │ │ ├── rigid_transform_test.cc │ │ ├── rigid_transform_test_helpers.h │ │ ├── timestamped_transform.cc │ │ ├── timestamped_transform.h │ │ ├── timestamped_transform_test.cc │ │ ├── transform.cc │ │ ├── transform.h │ │ ├── transform_interpolation_buffer.cc │ │ ├── transform_interpolation_buffer.h │ │ ├── transform_interpolation_buffer_test.cc │ │ └── transform_test.cc ├── cmake │ ├── functions.cmake │ └── modules │ │ ├── FindAbseil.cmake │ │ ├── FindEigen3.cmake │ │ ├── FindGMock.cmake │ │ ├── FindLuaGoogle.cmake │ │ └── FindSphinx.cmake ├── configuration_files │ ├── map_builder.lua │ ├── map_builder_server.lua │ ├── pose_graph.lua │ ├── trajectory_builder.lua │ ├── trajectory_builder_2d.lua │ └── trajectory_builder_3d.lua ├── docs │ ├── CMakeLists.txt │ ├── assets │ │ ├── logo_1024dp.png │ │ ├── logo_128dp.png │ │ ├── logo_16dp.png │ │ ├── logo_16dp.svg │ │ ├── logo_192dp.png │ │ ├── logo_24dp.png │ │ ├── logo_24dp.svg │ │ ├── logo_32dp.png │ │ ├── logo_32dp.svg │ │ ├── logo_36dp.png │ │ ├── logo_36dp.svg │ │ ├── logo_48dp.png │ │ ├── logo_48dp.svg │ │ ├── logo_512dp.png │ │ ├── logo_512dp.svg │ │ ├── logo_64dp.png │ │ ├── logo_64dp.svg │ │ ├── logo_72dp.png │ │ ├── logo_96dp.png │ │ ├── logo_96dp.svg │ │ └── t_shirt │ │ │ ├── logo_cartographer.ai │ │ │ ├── logo_cartographer.svg │ │ │ ├── logo_cartographer_512dp_shaded.svg │ │ │ ├── pantone_lookup.png │ │ │ └── pantone_lookup.txt │ └── source │ │ ├── autogenerate_groundtruth.png │ │ ├── conf.py │ │ ├── configuration.rst │ │ ├── cost_functions.rst │ │ ├── evaluation.rst │ │ ├── high_level_system_overview.png │ │ ├── index.rst │ │ ├── pbstream_migration.rst │ │ └── terminology.rst ├── package.xml └── scripts │ ├── build_test_asan.sh │ ├── ctest_to_junit.py │ ├── ctest_to_junit.xsl │ ├── install_async_grpc.sh │ ├── install_cartographer_bazel.sh │ ├── install_cartographer_cmake.sh │ ├── install_cartographer_cmake_with_grpc.sh │ ├── install_ceres.sh │ ├── install_debs_bazel.sh │ ├── install_debs_cmake.sh │ ├── install_grpc.sh │ ├── install_prometheus_cpp.sh │ ├── install_proto3.sh │ ├── load_docker_cache.sh │ ├── remove_mingw_cygwin_from_path.bat │ ├── save_docker_cache.sh │ └── update_configuration_doc.py ├── cartographer_ros ├── .dockerignore ├── .github │ └── ISSUE_TEMPLATE ├── .travis.yml ├── AUTHORS ├── CONTRIBUTING.md ├── Dockerfile.base.melodic ├── Dockerfile.indigo ├── Dockerfile.kinetic ├── Dockerfile.lunar ├── Dockerfile.melodic ├── LICENSE ├── README.rst ├── azure-pipelines.yml ├── cartographer_ros.rosinstall ├── cartographer_ros │ ├── CHANGELOG.rst │ ├── CMakeLists.txt │ ├── cartographer_ros │ │ ├── .clang-format │ │ ├── CMakeLists.txt │ │ ├── assets_writer.cc │ │ ├── assets_writer.h │ │ ├── assets_writer_main.cc │ │ ├── cartographer_grpc │ │ │ ├── node_grpc_main.cc │ │ │ └── offline_node_grpc_main.cc │ │ ├── configuration_files_test.cc │ │ ├── dev │ │ │ ├── pbstream_trajectories_to_rosbag_main.cc │ │ │ ├── rosbag_publisher_main.cc │ │ │ └── trajectory_comparison_main.cc │ │ ├── frontier_detection.cc │ │ ├── frontier_detection.h │ │ ├── map_builder_bridge.cc │ │ ├── map_builder_bridge.h │ │ ├── metrics │ │ │ ├── family_factory.cc │ │ │ ├── family_factory.h │ │ │ └── internal │ │ │ │ ├── counter.h │ │ │ │ ├── family.cc │ │ │ │ ├── family.h │ │ │ │ ├── gauge.h │ │ │ │ ├── histogram.cc │ │ │ │ ├── histogram.h │ │ │ │ └── metrics_test.cc │ │ ├── msg_conversion.cc │ │ ├── msg_conversion.h │ │ ├── msg_conversion_test.cc │ │ ├── node.cc │ │ ├── node.h │ │ ├── node_constants.cc │ │ ├── node_constants.h │ │ ├── node_main.cc │ │ ├── node_options.cc │ │ ├── node_options.h │ │ ├── occupancy_grid_node_main.cc │ │ ├── offline_node.cc │ │ ├── offline_node.h │ │ ├── offline_node_main.cc │ │ ├── pbstream_map_publisher_main.cc │ │ ├── pbstream_to_ros_map_main.cc │ │ ├── playable_bag.cc │ │ ├── playable_bag.h │ │ ├── ros_log_sink.cc │ │ ├── ros_log_sink.h │ │ ├── ros_map.cc │ │ ├── ros_map.h │ │ ├── ros_map_writing_points_processor.cc │ │ ├── ros_map_writing_points_processor.h │ │ ├── rosbag_validate_main.cc │ │ ├── sensor_bridge.cc │ │ ├── sensor_bridge.h │ │ ├── start_trajectory_main.cc │ │ ├── submap.cc │ │ ├── submap.h │ │ ├── tf_bridge.cc │ │ ├── tf_bridge.h │ │ ├── time_conversion.cc │ │ ├── time_conversion.h │ │ ├── time_conversion_test.cc │ │ ├── trajectory_options.cc │ │ ├── trajectory_options.h │ │ ├── urdf_reader.cc │ │ └── urdf_reader.h │ ├── configuration_files │ │ ├── assets_writer_backpack_2d.lua │ │ ├── assets_writer_backpack_2d_ci.lua │ │ ├── assets_writer_backpack_3d.lua │ │ ├── assets_writer_ros_map.lua │ │ ├── backpack_2d.lua │ │ ├── backpack_2d_localization.lua │ │ ├── backpack_2d_localization_evaluation.lua │ │ ├── backpack_2d_server.lua │ │ ├── backpack_3d.lua │ │ ├── backpack_3d_localization.lua │ │ ├── demo_2d.rviz │ │ ├── demo_3d.rviz │ │ ├── pr2.lua │ │ ├── revo_lds.lua │ │ ├── taurob_tracker.lua │ │ ├── transform.lua │ │ └── visualize_pbstream.lua │ ├── launch │ │ ├── assets_writer_backpack_2d.launch │ │ ├── assets_writer_backpack_3d.launch │ │ ├── assets_writer_ros_map.launch │ │ ├── backpack_2d.launch │ │ ├── backpack_3d.launch │ │ ├── demo_backpack_2d.launch │ │ ├── demo_backpack_2d_localization.launch │ │ ├── demo_backpack_3d.launch │ │ ├── demo_backpack_3d_localization.launch │ │ ├── demo_pr2.launch │ │ ├── demo_revo_lds.launch │ │ ├── demo_taurob_tracker.launch │ │ ├── grpc_demo_backpack_2d.launch │ │ ├── grpc_demo_backpack_2d_localization.launch │ │ ├── offline_backpack_2d.launch │ │ ├── offline_backpack_3d.launch │ │ ├── offline_node.launch │ │ ├── taurob_tracker.launch │ │ └── visualize_pbstream.launch │ ├── package.xml │ ├── scripts │ │ ├── cartographer_grpc_server.sh │ │ ├── dev │ │ │ ├── compare_localization_to_offline_trajectory.sh │ │ │ └── publish_fake_random_landmarks.py │ │ ├── remove_leading_slashes.py │ │ └── tf_remove_frames.py │ └── urdf │ │ ├── backpack_2d.urdf │ │ └── backpack_3d.urdf ├── cartographer_ros_msgs │ ├── CHANGELOG.rst │ ├── CMakeLists.txt │ ├── msg │ │ ├── BagfileProgress.msg │ │ ├── HistogramBucket.msg │ │ ├── LandmarkEntry.msg │ │ ├── LandmarkList.msg │ │ ├── Metric.msg │ │ ├── MetricFamily.msg │ │ ├── MetricLabel.msg │ │ ├── SensorTopics.msg │ │ ├── StatusCode.msg │ │ ├── StatusResponse.msg │ │ ├── SubmapEntry.msg │ │ ├── SubmapList.msg │ │ ├── SubmapTexture.msg │ │ ├── TrajectoryOptions.msg │ │ └── TrajectoryStates.msg │ ├── package.xml │ └── srv │ │ ├── FinishTrajectory.srv │ │ ├── GetTrajectoryStates.srv │ │ ├── ReadMetrics.srv │ │ ├── StartTrajectory.srv │ │ ├── SubmapQuery.srv │ │ └── WriteState.srv ├── cartographer_rviz │ ├── CHANGELOG.rst │ ├── CMakeLists.txt │ ├── cartographer_rviz │ │ ├── .clang-format │ │ ├── drawable_submap.cc │ │ ├── drawable_submap.h │ │ ├── ogre_slice.cc │ │ ├── ogre_slice.h │ │ ├── submaps_display.cc │ │ └── submaps_display.h │ ├── ogre_media │ │ └── materials │ │ │ ├── glsl120 │ │ │ ├── glsl120.program │ │ │ ├── submap.frag │ │ │ └── submap.vert │ │ │ └── scripts │ │ │ └── submap.material │ ├── package.xml │ └── rviz_plugin_description.xml ├── docs │ ├── CMakeLists.txt │ └── source │ │ ├── algo_walkthrough.rst │ │ ├── assets_writer.rst │ │ ├── compilation.rst │ │ ├── conf.py │ │ ├── configuration.rst │ │ ├── data.rst │ │ ├── demo_2d.gif │ │ ├── demos.rst │ │ ├── faq.rst │ │ ├── frames_demo_2d.jpg │ │ ├── getting_involved.rst │ │ ├── going_further.rst │ │ ├── index.rst │ │ ├── nodes_graph_demo_2d.jpg │ │ ├── point_cloud_viewer_demo_3d.jpg │ │ ├── ros_api.rst │ │ ├── tuning.rst │ │ └── your_bag.rst ├── jenkins │ ├── Dockerfile.kinetic │ ├── Jenkinsfile │ ├── jenkins-slave │ └── worker.py └── scripts │ ├── catkin_test_results.sh │ ├── check_access_token.sh │ ├── install.sh │ ├── install_debs.sh │ ├── load_docker_cache.sh │ ├── prepare_catkin_workspace.sh │ ├── prepare_jenkins_catkin_workspace.sh │ ├── ros_entrypoint.sh │ ├── save_docker_cache.sh │ └── update_catkin_workspace.sh ├── frontier_exploration ├── .gitignore ├── CMakeLists.txt ├── InstallationInstructions.md ├── README.md ├── config │ ├── decentralised_cartographer.lua │ ├── p3dx_base_local_planner_params.yaml │ ├── p3dx_costmap_common_params.yaml │ ├── p3dx_global_costmap_params.yaml │ ├── p3dx_local_costmap_params.yaml │ ├── pioneer-cartographer-grpc.lua │ └── upload_pioneer3dx.xml ├── defs │ ├── materials.xacro │ ├── pioneer3at.xacro │ ├── pioneer3at_body.xacro │ ├── pioneer3dx-lms100.xacro │ ├── pioneer3dx.xacro │ ├── pioneer3dx_body.xacro │ └── pioneer3dx_wheel.xacro ├── include │ ├── functions.h │ └── mtrand.h ├── launch │ ├── Burgard_assigner.launch │ ├── add_trajectory.launch │ ├── cartographer.launch │ ├── filter.launch │ ├── multi_robot_assigner.launch │ ├── multi_robot_navigation.launch │ ├── navigation.launch │ ├── robot_assigner.launch │ └── stage-pioneer-3dx-sick.launch ├── meshes │ ├── original │ │ ├── body.stl │ │ ├── caster_mount.stl │ │ ├── caster_plate.stl │ │ ├── chassis_top.stl │ │ ├── pioneer3dx.stl │ │ ├── sonars.stl │ │ ├── tires.stl │ │ ├── top_plate.stl │ │ └── wheels-center.stl │ ├── p3at_meshes │ │ ├── Coordinates │ │ ├── axle.stl │ │ ├── back_sonar.stl │ │ ├── chassis.stl │ │ ├── front_sonar.stl │ │ ├── left_hubcap.stl │ │ ├── right_hubcap.stl │ │ ├── top.stl │ │ └── wheel.stl │ └── p3dx_meshes │ │ ├── Coordinates │ │ ├── back_rim.stl │ │ ├── back_sonar.stl │ │ ├── center_hubcap.stl │ │ ├── center_wheel.stl │ │ ├── chassis.stl │ │ ├── front_rim.stl │ │ ├── front_sonar.stl │ │ ├── left_hubcap.stl │ │ ├── left_wheel.stl │ │ ├── lms100.dae │ │ ├── right_hubcap.stl │ │ ├── right_wheel.stl │ │ ├── swivel.stl │ │ └── top.stl ├── msg │ ├── FrontierTF.msg │ ├── InfoList.msg │ ├── PointArray.msg │ └── RobotPosGoal.msg ├── package.xml ├── scripts │ ├── Burgard_assigner.py │ ├── decent_robot_assigner.py │ ├── frontier_filter.py │ ├── frontier_opencv_detector.py │ ├── functions.py │ ├── getfrontier.py │ └── hungarian.py ├── src │ ├── functions.cpp │ └── mtrand.cpp ├── srv │ └── RobotService.srv └── stage-worlds │ ├── belgioioso_map.pgm │ ├── pioneer3at-sick.world │ ├── pioneer3dx-hokuyo.world │ ├── pioneer3dx-sick.world │ └── pioneer3dx-sick_orig.world ├── navigation ├── .gitignore ├── README.md ├── amcl │ ├── CHANGELOG.rst │ ├── CMakeLists.txt │ ├── cfg │ │ └── AMCL.cfg │ ├── examples │ │ ├── amcl_diff.launch │ │ └── amcl_omni.launch │ ├── include │ │ └── amcl │ │ │ ├── map │ │ │ └── map.h │ │ │ ├── pf │ │ │ ├── eig3.h │ │ │ ├── pf.h │ │ │ ├── pf_kdtree.h │ │ │ ├── pf_pdf.h │ │ │ └── pf_vector.h │ │ │ └── sensors │ │ │ ├── amcl_laser.h │ │ │ ├── amcl_odom.h │ │ │ └── amcl_sensor.h │ ├── package.xml │ ├── src │ │ ├── amcl │ │ │ ├── map │ │ │ │ ├── map.c │ │ │ │ ├── map_cspace.cpp │ │ │ │ ├── map_draw.c │ │ │ │ ├── map_range.c │ │ │ │ └── map_store.c │ │ │ ├── pf │ │ │ │ ├── eig3.c │ │ │ │ ├── pf.c │ │ │ │ ├── pf_draw.c │ │ │ │ ├── pf_kdtree.c │ │ │ │ ├── pf_pdf.c │ │ │ │ └── pf_vector.c │ │ │ └── sensors │ │ │ │ ├── amcl_laser.cpp │ │ │ │ ├── amcl_odom.cpp │ │ │ │ └── amcl_sensor.cpp │ │ └── amcl_node.cpp │ └── test │ │ ├── basic_localization.py │ │ ├── basic_localization_stage.xml │ │ ├── global_localization_stage.xml │ │ ├── rosie_multilaser.xml │ │ ├── set_initial_pose.xml │ │ ├── set_initial_pose_delayed.xml │ │ ├── set_pose.py │ │ ├── small_loop_crazy_driving_prg.xml │ │ ├── small_loop_crazy_driving_prg_corrected.xml │ │ ├── small_loop_prf.xml │ │ ├── texas_greenroom_loop.xml │ │ ├── texas_greenroom_loop_corrected.xml │ │ ├── texas_willow_hallway_loop.xml │ │ └── texas_willow_hallway_loop_corrected.xml ├── base_local_planner │ ├── CHANGELOG.rst │ ├── CMakeLists.txt │ ├── blp_plugin.xml │ ├── cfg │ │ ├── BaseLocalPlanner.cfg │ │ └── LocalPlannerLimits.cfg │ ├── include │ │ └── base_local_planner │ │ │ ├── costmap_model.h │ │ │ ├── footprint_helper.h │ │ │ ├── goal_functions.h │ │ │ ├── latched_stop_rotate_controller.h │ │ │ ├── line_iterator.h │ │ │ ├── local_planner_limits.h │ │ │ ├── local_planner_util.h │ │ │ ├── map_cell.h │ │ │ ├── map_grid.h │ │ │ ├── map_grid_cost_function.h │ │ │ ├── map_grid_visualizer.h │ │ │ ├── obstacle_cost_function.h │ │ │ ├── odometry_helper_ros.h │ │ │ ├── oscillation_cost_function.h │ │ │ ├── planar_laser_scan.h │ │ │ ├── point_grid.h │ │ │ ├── prefer_forward_cost_function.h │ │ │ ├── simple_scored_sampling_planner.h │ │ │ ├── simple_trajectory_generator.h │ │ │ ├── trajectory.h │ │ │ ├── trajectory_cost_function.h │ │ │ ├── trajectory_inc.h │ │ │ ├── trajectory_planner.h │ │ │ ├── trajectory_planner_ros.h │ │ │ ├── trajectory_sample_generator.h │ │ │ ├── trajectory_search.h │ │ │ ├── twirling_cost_function.h │ │ │ ├── velocity_iterator.h │ │ │ ├── voxel_grid_model.h │ │ │ └── world_model.h │ ├── msg │ │ └── Position2DInt.msg │ ├── package.xml │ ├── setup.py │ ├── src │ │ ├── costmap_model.cpp │ │ ├── footprint_helper.cpp │ │ ├── goal_functions.cpp │ │ ├── latched_stop_rotate_controller.cpp │ │ ├── local_planner_limits │ │ │ ├── .gitignore │ │ │ └── __init__.py │ │ ├── local_planner_util.cpp │ │ ├── map_cell.cpp │ │ ├── map_grid.cpp │ │ ├── map_grid_cost_function.cpp │ │ ├── map_grid_visualizer.cpp │ │ ├── obstacle_cost_function.cpp │ │ ├── odometry_helper_ros.cpp │ │ ├── oscillation_cost_function.cpp │ │ ├── point_grid.cpp │ │ ├── prefer_forward_cost_function.cpp │ │ ├── simple_scored_sampling_planner.cpp │ │ ├── simple_trajectory_generator.cpp │ │ ├── trajectory.cpp │ │ ├── trajectory_planner.cpp │ │ ├── trajectory_planner_ros.cpp │ │ ├── twirling_cost_function.cpp │ │ └── voxel_grid_model.cpp │ └── test │ │ ├── footprint_helper_test.cpp │ │ ├── gtest_main.cpp │ │ ├── line_iterator_test.cpp │ │ ├── map_grid_test.cpp │ │ ├── trajectory_generator_test.cpp │ │ ├── utest.cpp │ │ ├── velocity_iterator_test.cpp │ │ └── wavefront_map_accessor.h ├── carrot_planner │ ├── CHANGELOG.rst │ ├── CMakeLists.txt │ ├── bgp_plugin.xml │ ├── include │ │ └── carrot_planner │ │ │ └── carrot_planner.h │ ├── package.xml │ └── src │ │ └── carrot_planner.cpp ├── clear_costmap_recovery │ ├── CHANGELOG.rst │ ├── CMakeLists.txt │ ├── ccr_plugin.xml │ ├── include │ │ └── clear_costmap_recovery │ │ │ └── clear_costmap_recovery.h │ ├── package.xml │ ├── src │ │ └── clear_costmap_recovery.cpp │ └── test │ │ ├── clear_tester.cpp │ │ ├── clear_tests.launch │ │ └── params.yaml ├── costmap_2d │ ├── CHANGELOG.rst │ ├── CMakeLists.txt │ ├── cfg │ │ ├── Costmap2D.cfg │ │ ├── GenericPlugin.cfg │ │ ├── InflationPlugin.cfg │ │ ├── ObstaclePlugin.cfg │ │ └── VoxelPlugin.cfg │ ├── costmap_plugins.xml │ ├── include │ │ └── costmap_2d │ │ │ ├── array_parser.h │ │ │ ├── cost_values.h │ │ │ ├── costmap_2d.h │ │ │ ├── costmap_2d_publisher.h │ │ │ ├── costmap_2d_ros.h │ │ │ ├── costmap_layer.h │ │ │ ├── costmap_math.h │ │ │ ├── footprint.h │ │ │ ├── inflation_layer.h │ │ │ ├── layer.h │ │ │ ├── layered_costmap.h │ │ │ ├── observation.h │ │ │ ├── observation_buffer.h │ │ │ ├── obstacle_layer.h │ │ │ ├── static_layer.h │ │ │ ├── testing_helper.h │ │ │ └── voxel_layer.h │ ├── launch │ │ ├── example.launch │ │ └── example_params.yaml │ ├── msg │ │ └── VoxelGrid.msg │ ├── package.xml │ ├── plugins │ │ ├── inflation_layer.cpp │ │ ├── obstacle_layer.cpp │ │ ├── static_layer.cpp │ │ └── voxel_layer.cpp │ ├── src │ │ ├── array_parser.cpp │ │ ├── costmap_2d.cpp │ │ ├── costmap_2d_cloud.cpp │ │ ├── costmap_2d_markers.cpp │ │ ├── costmap_2d_node.cpp │ │ ├── costmap_2d_publisher.cpp │ │ ├── costmap_2d_ros.cpp │ │ ├── costmap_layer.cpp │ │ ├── costmap_math.cpp │ │ ├── footprint.cpp │ │ ├── layer.cpp │ │ ├── layered_costmap.cpp │ │ └── observation_buffer.cpp │ └── test │ │ ├── TenByTen.pgm │ │ ├── TenByTen.yaml │ │ ├── array_parser_test.cpp │ │ ├── coordinates_test.cpp │ │ ├── costmap_params.yaml │ │ ├── costmap_tester.cpp │ │ ├── footprint_tests.cpp │ │ ├── footprint_tests.launch │ │ ├── inflation_tests.cpp │ │ ├── inflation_tests.launch │ │ ├── module_tests.cpp │ │ ├── obstacle_tests.cpp │ │ ├── obstacle_tests.launch │ │ ├── simple_driving_test.xml │ │ ├── static_tests.cpp │ │ └── static_tests.launch ├── dwa_local_planner │ ├── CHANGELOG.rst │ ├── CMakeLists.txt │ ├── blp_plugin.xml │ ├── cfg │ │ └── DWAPlanner.cfg │ ├── include │ │ └── dwa_local_planner │ │ │ ├── dwa_planner.h │ │ │ └── dwa_planner_ros.h │ ├── package.xml │ └── src │ │ ├── dwa_planner.cpp │ │ └── dwa_planner_ros.cpp ├── fake_localization │ ├── CHANGELOG.rst │ ├── CMakeLists.txt │ ├── fake_localization.cpp │ ├── package.xml │ └── static_odom_broadcaster.py ├── global_planner │ ├── CHANGELOG.rst │ ├── CMakeLists.txt │ ├── bgp_plugin.xml │ ├── cfg │ │ └── GlobalPlanner.cfg │ ├── include │ │ └── global_planner │ │ │ ├── astar.h │ │ │ ├── dijkstra.h │ │ │ ├── expander.h │ │ │ ├── gradient_path.h │ │ │ ├── grid_path.h │ │ │ ├── orientation_filter.h │ │ │ ├── planner_core.h │ │ │ ├── potential_calculator.h │ │ │ ├── quadratic_calculator.h │ │ │ └── traceback.h │ ├── package.xml │ └── src │ │ ├── astar.cpp │ │ ├── dijkstra.cpp │ │ ├── gradient_path.cpp │ │ ├── grid_path.cpp │ │ ├── orientation_filter.cpp │ │ ├── plan_node.cpp │ │ ├── planner_core.cpp │ │ └── quadratic_calculator.cpp ├── map_server │ ├── CHANGELOG.rst │ ├── CMakeLists.txt │ ├── include │ │ └── map_server │ │ │ └── image_loader.h │ ├── package.xml │ ├── scripts │ │ └── crop_map │ ├── src │ │ ├── image_loader.cpp │ │ ├── main.cpp │ │ ├── map_saver.cpp │ │ └── map_server.dox │ └── test │ │ ├── consumer.py │ │ ├── rtest.cpp │ │ ├── rtest.xml │ │ ├── test_constants.cpp │ │ ├── test_constants.h │ │ ├── testmap.bmp │ │ ├── testmap.png │ │ ├── testmap.yaml │ │ └── utest.cpp ├── move_base │ ├── CHANGELOG.rst │ ├── CMakeLists.txt │ ├── cfg │ │ └── MoveBase.cfg │ ├── include │ │ └── move_base │ │ │ └── move_base.h │ ├── package.xml │ ├── planner_test.xml │ └── src │ │ ├── move_base.cpp │ │ └── move_base_node.cpp ├── move_slow_and_clear │ ├── CHANGELOG.rst │ ├── CMakeLists.txt │ ├── include │ │ └── move_slow_and_clear │ │ │ └── move_slow_and_clear.h │ ├── package.xml │ ├── recovery_plugin.xml │ └── src │ │ └── move_slow_and_clear.cpp ├── nav_core │ ├── CHANGELOG.rst │ ├── CMakeLists.txt │ ├── include │ │ └── nav_core │ │ │ ├── base_global_planner.h │ │ │ ├── base_local_planner.h │ │ │ ├── parameter_magic.h │ │ │ └── recovery_behavior.h │ └── package.xml ├── navfn │ ├── CHANGELOG.rst │ ├── CMakeLists.txt │ ├── Makefile.orig │ ├── bgp_plugin.xml │ ├── include │ │ └── navfn │ │ │ ├── navfn.h │ │ │ ├── navfn_ros.h │ │ │ ├── navwin.h │ │ │ ├── potarr_point.h │ │ │ └── read_pgm_costmap.h │ ├── package.xml │ ├── src │ │ ├── navfn.cpp │ │ ├── navfn_node.cpp │ │ ├── navfn_ros.cpp │ │ ├── navtest.cpp │ │ ├── navwin.cpp │ │ └── read_pgm_costmap.cpp │ ├── srv │ │ ├── MakeNavPlan.srv │ │ └── SetCostmap.srv │ └── test │ │ ├── CMakeLists.txt │ │ ├── path_calc_test.cpp │ │ └── willow_costmap.pgm ├── navigation │ ├── CHANGELOG.rst │ ├── CMakeLists.txt │ ├── README.rst │ └── package.xml ├── rotate_recovery │ ├── CHANGELOG.rst │ ├── CMakeLists.txt │ ├── include │ │ └── rotate_recovery │ │ │ └── rotate_recovery.h │ ├── package.xml │ ├── rotate_plugin.xml │ └── src │ │ └── rotate_recovery.cpp └── voxel_grid │ ├── CHANGELOG.rst │ ├── CMakeLists.txt │ ├── include │ └── voxel_grid │ │ └── voxel_grid.h │ ├── package.xml │ ├── src │ └── voxel_grid.cpp │ └── test │ └── voxel_grid_tests.cpp └── stage_ros_private ├── .gitignore ├── .travis.yml ├── CHANGELOG.rst ├── CMakeLists.txt ├── README.md ├── package.xml ├── rviz └── stage.rviz ├── scripts └── upgrade-world.sh ├── src └── stageros.cpp ├── test ├── hztest.xml ├── intensity_test.py └── intensity_test.xml └── world ├── erratic-inc.world ├── intense.world ├── willow-erratic.world ├── willow-four-erratics-multisensor.world ├── willow-four-erratics.world └── willow-full.pgm /.catkin_workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/.catkin_workspace -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/README.md -------------------------------------------------------------------------------- /cartographer/.bazelci/presubmit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/.bazelci/presubmit.yml -------------------------------------------------------------------------------- /cartographer/.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/.bazelrc -------------------------------------------------------------------------------- /cartographer/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/.dockerignore -------------------------------------------------------------------------------- /cartographer/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /cartographer/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | bazel-* 3 | -------------------------------------------------------------------------------- /cartographer/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/.travis.yml -------------------------------------------------------------------------------- /cartographer/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/AUTHORS -------------------------------------------------------------------------------- /cartographer/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/BUILD.bazel -------------------------------------------------------------------------------- /cartographer/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/CHANGELOG.rst -------------------------------------------------------------------------------- /cartographer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/CMakeLists.txt -------------------------------------------------------------------------------- /cartographer/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/CONTRIBUTING.md -------------------------------------------------------------------------------- /cartographer/Dockerfile.jessie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/Dockerfile.jessie -------------------------------------------------------------------------------- /cartographer/Dockerfile.stretch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/Dockerfile.stretch -------------------------------------------------------------------------------- /cartographer/Dockerfile.trusty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/Dockerfile.trusty -------------------------------------------------------------------------------- /cartographer/Dockerfile.trusty.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/Dockerfile.trusty.bazel -------------------------------------------------------------------------------- /cartographer/Dockerfile.xenial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/Dockerfile.xenial -------------------------------------------------------------------------------- /cartographer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/LICENSE -------------------------------------------------------------------------------- /cartographer/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/README.rst -------------------------------------------------------------------------------- /cartographer/RELEASING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/RELEASING.rst -------------------------------------------------------------------------------- /cartographer/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/WORKSPACE -------------------------------------------------------------------------------- /cartographer/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/azure-pipelines.yml -------------------------------------------------------------------------------- /cartographer/bazel/repositories.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/bazel/repositories.bzl -------------------------------------------------------------------------------- /cartographer/bazel/third_party/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/bazel/third_party/BUILD.bazel -------------------------------------------------------------------------------- /cartographer/bazel/third_party/cairo/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/bazel/third_party/cairo/BUILD.bazel -------------------------------------------------------------------------------- /cartographer/bazel/third_party/cairo/cairo-features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/bazel/third_party/cairo/cairo-features.h -------------------------------------------------------------------------------- /cartographer/bazel/third_party/cairo/cairo.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/bazel/third_party/cairo/cairo.BUILD -------------------------------------------------------------------------------- /cartographer/bazel/third_party/cairo/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/bazel/third_party/cairo/config.h -------------------------------------------------------------------------------- /cartographer/bazel/third_party/ceres.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/bazel/third_party/ceres.BUILD -------------------------------------------------------------------------------- /cartographer/bazel/third_party/eigen.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/bazel/third_party/eigen.BUILD -------------------------------------------------------------------------------- /cartographer/bazel/third_party/expat.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/bazel/third_party/expat.BUILD -------------------------------------------------------------------------------- /cartographer/bazel/third_party/fontconfig/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/bazel/third_party/fontconfig/BUILD.bazel -------------------------------------------------------------------------------- /cartographer/bazel/third_party/fontconfig/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/bazel/third_party/fontconfig/config.h -------------------------------------------------------------------------------- /cartographer/bazel/third_party/fontconfig/fontconfig.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/bazel/third_party/fontconfig/fontconfig.BUILD -------------------------------------------------------------------------------- /cartographer/bazel/third_party/freetype2.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/bazel/third_party/freetype2.BUILD -------------------------------------------------------------------------------- /cartographer/bazel/third_party/gd.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/bazel/third_party/gd.BUILD -------------------------------------------------------------------------------- /cartographer/bazel/third_party/libjpeg.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/bazel/third_party/libjpeg.BUILD -------------------------------------------------------------------------------- /cartographer/bazel/third_party/libpng.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/bazel/third_party/libpng.BUILD -------------------------------------------------------------------------------- /cartographer/bazel/third_party/lua.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/bazel/third_party/lua.BUILD -------------------------------------------------------------------------------- /cartographer/bazel/third_party/pixman/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/bazel/third_party/pixman/BUILD.bazel -------------------------------------------------------------------------------- /cartographer/bazel/third_party/pixman/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/bazel/third_party/pixman/config.h -------------------------------------------------------------------------------- /cartographer/bazel/third_party/pixman/pixman.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/bazel/third_party/pixman/pixman.BUILD -------------------------------------------------------------------------------- /cartographer/bazel/third_party/zlib.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/bazel/third_party/zlib.BUILD -------------------------------------------------------------------------------- /cartographer/cartographer-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer-config.cmake.in -------------------------------------------------------------------------------- /cartographer/cartographer/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: Google 2 | DerivePointerAlignment: false 3 | -------------------------------------------------------------------------------- /cartographer/cartographer/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/BUILD.bazel -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/cloud/BUILD.bazel -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/client/map_builder_stub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/cloud/client/map_builder_stub.cc -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/client/map_builder_stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/cloud/client/map_builder_stub.h -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/map_builder_server_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/cloud/map_builder_server_main.cc -------------------------------------------------------------------------------- /cartographer/cartographer/common/blocking_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/common/blocking_queue.h -------------------------------------------------------------------------------- /cartographer/cartographer/common/blocking_queue_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/common/blocking_queue_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/common/ceres_solver_options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/common/ceres_solver_options.cc -------------------------------------------------------------------------------- /cartographer/cartographer/common/ceres_solver_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/common/ceres_solver_options.h -------------------------------------------------------------------------------- /cartographer/cartographer/common/config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/common/config.h.cmake -------------------------------------------------------------------------------- /cartographer/cartographer/common/fixed_ratio_sampler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/common/fixed_ratio_sampler.cc -------------------------------------------------------------------------------- /cartographer/cartographer/common/fixed_ratio_sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/common/fixed_ratio_sampler.h -------------------------------------------------------------------------------- /cartographer/cartographer/common/histogram.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/common/histogram.cc -------------------------------------------------------------------------------- /cartographer/cartographer/common/histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/common/histogram.h -------------------------------------------------------------------------------- /cartographer/cartographer/common/lockless_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/common/lockless_queue.h -------------------------------------------------------------------------------- /cartographer/cartographer/common/lockless_queue_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/common/lockless_queue_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/common/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/common/lua.h -------------------------------------------------------------------------------- /cartographer/cartographer/common/lua_parameter_dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/common/lua_parameter_dictionary.h -------------------------------------------------------------------------------- /cartographer/cartographer/common/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/common/math.h -------------------------------------------------------------------------------- /cartographer/cartographer/common/math_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/common/math_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/common/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/common/port.h -------------------------------------------------------------------------------- /cartographer/cartographer/common/rate_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/common/rate_timer.h -------------------------------------------------------------------------------- /cartographer/cartographer/common/rate_timer_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/common/rate_timer_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/common/task.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/common/task.cc -------------------------------------------------------------------------------- /cartographer/cartographer/common/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/common/task.h -------------------------------------------------------------------------------- /cartographer/cartographer/common/task_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/common/task_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/common/thread_pool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/common/thread_pool.cc -------------------------------------------------------------------------------- /cartographer/cartographer/common/thread_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/common/thread_pool.h -------------------------------------------------------------------------------- /cartographer/cartographer/common/thread_pool_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/common/thread_pool_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/common/time.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/common/time.cc -------------------------------------------------------------------------------- /cartographer/cartographer/common/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/common/time.h -------------------------------------------------------------------------------- /cartographer/cartographer/common/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/common/utils.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/color.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/color.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/color.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/coloring_points_processor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/coloring_points_processor.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/coloring_points_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/coloring_points_processor.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/counting_points_processor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/counting_points_processor.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/counting_points_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/counting_points_processor.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/draw_trajectories.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/draw_trajectories.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/draw_trajectories.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/draw_trajectories.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/fake_file_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/fake_file_writer.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/fake_file_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/fake_file_writer.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/fake_file_writer_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/fake_file_writer_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/file_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/file_writer.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/file_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/file_writer.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/hybrid_grid_points_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/hybrid_grid_points_processor.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/image.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/image.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/image.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/internal/pbstream_info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/internal/pbstream_info.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/internal/pbstream_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/internal/pbstream_info.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/internal/pbstream_migrate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/internal/pbstream_migrate.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/internal/pbstream_migrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/internal/pbstream_migrate.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/null_points_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/null_points_processor.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/pbstream_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/pbstream_main.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/pcd_writing_points_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/pcd_writing_points_processor.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/ply_writing_points_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/ply_writing_points_processor.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/points_batch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/points_batch.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/points_batch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/points_batch.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/points_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/points_processor.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/proto_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/proto_stream.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/proto_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/proto_stream.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/proto_stream_deserializer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/proto_stream_deserializer.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/proto_stream_deserializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/proto_stream_deserializer.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/proto_stream_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/proto_stream_interface.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/proto_stream_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/proto_stream_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/submap_painter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/submap_painter.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/submap_painter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/submap_painter.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/testing/test_helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/testing/test_helpers.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/testing/test_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/testing/test_helpers.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/xray_points_processor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/xray_points_processor.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/xray_points_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/xray_points_processor.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/xyz_writing_points_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/io/xyz_writing_points_processor.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/2d/grid_2d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/2d/grid_2d.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/2d/grid_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/2d/grid_2d.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/2d/map_limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/2d/map_limits.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/2d/map_limits_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/2d/map_limits_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/2d/probability_grid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/2d/probability_grid.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/2d/probability_grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/2d/probability_grid.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/2d/submap_2d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/2d/submap_2d.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/2d/submap_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/2d/submap_2d.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/2d/submap_2d_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/2d/submap_2d_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/2d/tsd_value_converter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/2d/tsd_value_converter.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/2d/tsd_value_converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/2d/tsd_value_converter.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/2d/tsdf_2d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/2d/tsdf_2d.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/2d/tsdf_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/2d/tsdf_2d.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/2d/tsdf_2d_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/2d/tsdf_2d_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/2d/xy_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/2d/xy_index.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/2d/xy_index_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/2d/xy_index_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/3d/hybrid_grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/3d/hybrid_grid.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/3d/hybrid_grid_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/3d/hybrid_grid_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/3d/submap_3d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/3d/submap_3d.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/3d/submap_3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/3d/submap_3d.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/3d/submap_3d_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/3d/submap_3d_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/detect_floors.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/detect_floors.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/detect_floors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/detect_floors.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/grid_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/grid_interface.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/id.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/id_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/id_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/imu_tracker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/imu_tracker.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/imu_tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/imu_tracker.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/imu_tracker_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/imu_tracker_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/motion_filter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/internal/motion_filter.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/motion_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/internal/motion_filter.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/work_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/internal/work_queue.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/local_slam_result_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/local_slam_result_data.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/map_builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/map_builder.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/map_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/map_builder.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/map_builder_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/map_builder_interface.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/map_builder_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/map_builder_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/pose_extrapolator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/pose_extrapolator.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/pose_extrapolator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/pose_extrapolator.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/pose_extrapolator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/pose_extrapolator_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/pose_graph.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/pose_graph.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/pose_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/pose_graph.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/pose_graph_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/pose_graph_data.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/pose_graph_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/pose_graph_interface.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/pose_graph_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/pose_graph_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/pose_graph_trimmer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/pose_graph_trimmer.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/pose_graph_trimmer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/pose_graph_trimmer.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/probability_values.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/probability_values.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/probability_values.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/probability_values.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/proto/2d/grid_2d.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/proto/2d/grid_2d.proto -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/proto/2d/map_limits.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/proto/2d/map_limits.proto -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/proto/2d/tsdf_2d.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/proto/2d/tsdf_2d.proto -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/proto/pose_graph.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/proto/pose_graph.proto -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/proto/serialization.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/proto/serialization.proto -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/proto/submap.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/proto/submap.proto -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/proto/trajectory.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/proto/trajectory.proto -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/submaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/submaps.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/submaps_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/submaps_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/trajectory_node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/trajectory_node.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/trajectory_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/trajectory_node.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/trajectory_node_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/trajectory_node_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/value_conversion_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/mapping/value_conversion_tables.h -------------------------------------------------------------------------------- /cartographer/cartographer/metrics/counter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/metrics/counter.cc -------------------------------------------------------------------------------- /cartographer/cartographer/metrics/counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/metrics/counter.h -------------------------------------------------------------------------------- /cartographer/cartographer/metrics/family_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/metrics/family_factory.h -------------------------------------------------------------------------------- /cartographer/cartographer/metrics/gauge.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/metrics/gauge.cc -------------------------------------------------------------------------------- /cartographer/cartographer/metrics/gauge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/metrics/gauge.h -------------------------------------------------------------------------------- /cartographer/cartographer/metrics/histogram.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/metrics/histogram.cc -------------------------------------------------------------------------------- /cartographer/cartographer/metrics/histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/metrics/histogram.h -------------------------------------------------------------------------------- /cartographer/cartographer/metrics/register.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/metrics/register.cc -------------------------------------------------------------------------------- /cartographer/cartographer/metrics/register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/metrics/register.h -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/node/imu_calibration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/pose_graph/node/imu_calibration.h -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/node/node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/pose_graph/node/node.cc -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/node/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/pose_graph/node/node.h -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/node/node_id.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/pose_graph/node/node_id.cc -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/node/node_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/pose_graph/node/node_id.h -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/node/node_id_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/pose_graph/node/node_id_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/node/nodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/pose_graph/node/nodes.h -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/node/pose_2d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/pose_graph/node/pose_2d.cc -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/node/pose_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/pose_graph/node/pose_2d.h -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/node/pose_2d_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/pose_graph/node/pose_2d_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/node/pose_3d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/pose_graph/node/pose_3d.cc -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/node/pose_3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/pose_graph/node/pose_3d.h -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/node/pose_3d_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/pose_graph/node/pose_3d_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/pose_graph_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/pose_graph/pose_graph_data.cc -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/pose_graph_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/pose_graph/pose_graph_data.h -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/proto/constraint.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/pose_graph/proto/constraint.proto -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/proto/node.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/pose_graph/proto/node.proto -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/solver/ceres_solver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/pose_graph/solver/ceres_solver.cc -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/solver/ceres_solver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/pose_graph/solver/ceres_solver.h -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/solver/solver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/pose_graph/solver/solver.h -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/collator_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/sensor/collator_interface.h -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/compressed_point_cloud.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/sensor/compressed_point_cloud.cc -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/compressed_point_cloud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/sensor/compressed_point_cloud.h -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/sensor/data.h -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/fixed_frame_pose_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/sensor/fixed_frame_pose_data.cc -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/fixed_frame_pose_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/sensor/fixed_frame_pose_data.h -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/imu_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/sensor/imu_data.cc -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/imu_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/sensor/imu_data.h -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/internal/collator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/sensor/internal/collator.cc -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/internal/collator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/sensor/internal/collator.h -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/internal/collator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/sensor/internal/collator_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/internal/dispatchable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/sensor/internal/dispatchable.h -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/internal/test_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/sensor/internal/test_helpers.h -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/internal/voxel_filter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/sensor/internal/voxel_filter.cc -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/internal/voxel_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/sensor/internal/voxel_filter.h -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/landmark_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/sensor/landmark_data.cc -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/landmark_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/sensor/landmark_data.h -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/landmark_data_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/sensor/landmark_data_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/map_by_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/sensor/map_by_time.h -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/map_by_time_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/sensor/map_by_time_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/odometry_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/sensor/odometry_data.cc -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/odometry_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/sensor/odometry_data.h -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/point_cloud.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/sensor/point_cloud.cc -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/point_cloud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/sensor/point_cloud.h -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/point_cloud_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/sensor/point_cloud_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/proto/sensor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/sensor/proto/sensor.proto -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/range_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/sensor/range_data.cc -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/range_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/sensor/range_data.h -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/range_data_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/sensor/range_data_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/rangefinder_point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/sensor/rangefinder_point.h -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/timed_point_cloud_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/sensor/timed_point_cloud_data.cc -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/timed_point_cloud_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/sensor/timed_point_cloud_data.h -------------------------------------------------------------------------------- /cartographer/cartographer/testing/test_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/testing/test_helpers.h -------------------------------------------------------------------------------- /cartographer/cartographer/transform/proto/transform.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/transform/proto/transform.proto -------------------------------------------------------------------------------- /cartographer/cartographer/transform/rigid_transform.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/transform/rigid_transform.cc -------------------------------------------------------------------------------- /cartographer/cartographer/transform/rigid_transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/transform/rigid_transform.h -------------------------------------------------------------------------------- /cartographer/cartographer/transform/rigid_transform_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/transform/rigid_transform_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/transform/timestamped_transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/transform/timestamped_transform.h -------------------------------------------------------------------------------- /cartographer/cartographer/transform/transform.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/transform/transform.cc -------------------------------------------------------------------------------- /cartographer/cartographer/transform/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/transform/transform.h -------------------------------------------------------------------------------- /cartographer/cartographer/transform/transform_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cartographer/transform/transform_test.cc -------------------------------------------------------------------------------- /cartographer/cmake/functions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cmake/functions.cmake -------------------------------------------------------------------------------- /cartographer/cmake/modules/FindAbseil.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cmake/modules/FindAbseil.cmake -------------------------------------------------------------------------------- /cartographer/cmake/modules/FindEigen3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cmake/modules/FindEigen3.cmake -------------------------------------------------------------------------------- /cartographer/cmake/modules/FindGMock.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cmake/modules/FindGMock.cmake -------------------------------------------------------------------------------- /cartographer/cmake/modules/FindLuaGoogle.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cmake/modules/FindLuaGoogle.cmake -------------------------------------------------------------------------------- /cartographer/cmake/modules/FindSphinx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/cmake/modules/FindSphinx.cmake -------------------------------------------------------------------------------- /cartographer/configuration_files/map_builder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/configuration_files/map_builder.lua -------------------------------------------------------------------------------- /cartographer/configuration_files/map_builder_server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/configuration_files/map_builder_server.lua -------------------------------------------------------------------------------- /cartographer/configuration_files/pose_graph.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/configuration_files/pose_graph.lua -------------------------------------------------------------------------------- /cartographer/configuration_files/trajectory_builder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/configuration_files/trajectory_builder.lua -------------------------------------------------------------------------------- /cartographer/configuration_files/trajectory_builder_2d.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/configuration_files/trajectory_builder_2d.lua -------------------------------------------------------------------------------- /cartographer/configuration_files/trajectory_builder_3d.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/configuration_files/trajectory_builder_3d.lua -------------------------------------------------------------------------------- /cartographer/docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/docs/CMakeLists.txt -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_1024dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/docs/assets/logo_1024dp.png -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_128dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/docs/assets/logo_128dp.png -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_16dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/docs/assets/logo_16dp.png -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_16dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/docs/assets/logo_16dp.svg -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_192dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/docs/assets/logo_192dp.png -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/docs/assets/logo_24dp.png -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_24dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/docs/assets/logo_24dp.svg -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_32dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/docs/assets/logo_32dp.png -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_32dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/docs/assets/logo_32dp.svg -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/docs/assets/logo_36dp.png -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_36dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/docs/assets/logo_36dp.svg -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/docs/assets/logo_48dp.png -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_48dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/docs/assets/logo_48dp.svg -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_512dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/docs/assets/logo_512dp.png -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_512dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/docs/assets/logo_512dp.svg -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_64dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/docs/assets/logo_64dp.png -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_64dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/docs/assets/logo_64dp.svg -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_72dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/docs/assets/logo_72dp.png -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_96dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/docs/assets/logo_96dp.png -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_96dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/docs/assets/logo_96dp.svg -------------------------------------------------------------------------------- /cartographer/docs/assets/t_shirt/logo_cartographer.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/docs/assets/t_shirt/logo_cartographer.ai -------------------------------------------------------------------------------- /cartographer/docs/assets/t_shirt/logo_cartographer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/docs/assets/t_shirt/logo_cartographer.svg -------------------------------------------------------------------------------- /cartographer/docs/assets/t_shirt/pantone_lookup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/docs/assets/t_shirt/pantone_lookup.png -------------------------------------------------------------------------------- /cartographer/docs/assets/t_shirt/pantone_lookup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/docs/assets/t_shirt/pantone_lookup.txt -------------------------------------------------------------------------------- /cartographer/docs/source/autogenerate_groundtruth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/docs/source/autogenerate_groundtruth.png -------------------------------------------------------------------------------- /cartographer/docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/docs/source/conf.py -------------------------------------------------------------------------------- /cartographer/docs/source/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/docs/source/configuration.rst -------------------------------------------------------------------------------- /cartographer/docs/source/cost_functions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/docs/source/cost_functions.rst -------------------------------------------------------------------------------- /cartographer/docs/source/evaluation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/docs/source/evaluation.rst -------------------------------------------------------------------------------- /cartographer/docs/source/high_level_system_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/docs/source/high_level_system_overview.png -------------------------------------------------------------------------------- /cartographer/docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/docs/source/index.rst -------------------------------------------------------------------------------- /cartographer/docs/source/pbstream_migration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/docs/source/pbstream_migration.rst -------------------------------------------------------------------------------- /cartographer/docs/source/terminology.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/docs/source/terminology.rst -------------------------------------------------------------------------------- /cartographer/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/package.xml -------------------------------------------------------------------------------- /cartographer/scripts/build_test_asan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/scripts/build_test_asan.sh -------------------------------------------------------------------------------- /cartographer/scripts/ctest_to_junit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/scripts/ctest_to_junit.py -------------------------------------------------------------------------------- /cartographer/scripts/ctest_to_junit.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/scripts/ctest_to_junit.xsl -------------------------------------------------------------------------------- /cartographer/scripts/install_async_grpc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/scripts/install_async_grpc.sh -------------------------------------------------------------------------------- /cartographer/scripts/install_cartographer_bazel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/scripts/install_cartographer_bazel.sh -------------------------------------------------------------------------------- /cartographer/scripts/install_cartographer_cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/scripts/install_cartographer_cmake.sh -------------------------------------------------------------------------------- /cartographer/scripts/install_ceres.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/scripts/install_ceres.sh -------------------------------------------------------------------------------- /cartographer/scripts/install_debs_bazel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/scripts/install_debs_bazel.sh -------------------------------------------------------------------------------- /cartographer/scripts/install_debs_cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/scripts/install_debs_cmake.sh -------------------------------------------------------------------------------- /cartographer/scripts/install_grpc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/scripts/install_grpc.sh -------------------------------------------------------------------------------- /cartographer/scripts/install_prometheus_cpp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/scripts/install_prometheus_cpp.sh -------------------------------------------------------------------------------- /cartographer/scripts/install_proto3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/scripts/install_proto3.sh -------------------------------------------------------------------------------- /cartographer/scripts/load_docker_cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/scripts/load_docker_cache.sh -------------------------------------------------------------------------------- /cartographer/scripts/remove_mingw_cygwin_from_path.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/scripts/remove_mingw_cygwin_from_path.bat -------------------------------------------------------------------------------- /cartographer/scripts/save_docker_cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/scripts/save_docker_cache.sh -------------------------------------------------------------------------------- /cartographer/scripts/update_configuration_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer/scripts/update_configuration_doc.py -------------------------------------------------------------------------------- /cartographer_ros/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/.dockerignore -------------------------------------------------------------------------------- /cartographer_ros/.github/ISSUE_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/.github/ISSUE_TEMPLATE -------------------------------------------------------------------------------- /cartographer_ros/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/.travis.yml -------------------------------------------------------------------------------- /cartographer_ros/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/AUTHORS -------------------------------------------------------------------------------- /cartographer_ros/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/CONTRIBUTING.md -------------------------------------------------------------------------------- /cartographer_ros/Dockerfile.base.melodic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/Dockerfile.base.melodic -------------------------------------------------------------------------------- /cartographer_ros/Dockerfile.indigo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/Dockerfile.indigo -------------------------------------------------------------------------------- /cartographer_ros/Dockerfile.kinetic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/Dockerfile.kinetic -------------------------------------------------------------------------------- /cartographer_ros/Dockerfile.lunar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/Dockerfile.lunar -------------------------------------------------------------------------------- /cartographer_ros/Dockerfile.melodic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/Dockerfile.melodic -------------------------------------------------------------------------------- /cartographer_ros/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/LICENSE -------------------------------------------------------------------------------- /cartographer_ros/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/README.rst -------------------------------------------------------------------------------- /cartographer_ros/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/azure-pipelines.yml -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros.rosinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/cartographer_ros.rosinstall -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/cartographer_ros/CHANGELOG.rst -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/cartographer_ros/CMakeLists.txt -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: Google 2 | DerivePointerAlignment: false 3 | -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/node.cc -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/node.h -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/submap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/submap.h -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/launch/backpack_2d.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/cartographer_ros/launch/backpack_2d.launch -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/launch/backpack_3d.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/cartographer_ros/launch/backpack_3d.launch -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/launch/demo_pr2.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/cartographer_ros/launch/demo_pr2.launch -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/cartographer_ros/package.xml -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/urdf/backpack_2d.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/cartographer_ros/urdf/backpack_2d.urdf -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/urdf/backpack_3d.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/cartographer_ros/urdf/backpack_3d.urdf -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros_msgs/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/cartographer_ros_msgs/CHANGELOG.rst -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros_msgs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/cartographer_ros_msgs/CMakeLists.txt -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros_msgs/msg/LandmarkList.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/cartographer_ros_msgs/msg/LandmarkList.msg -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros_msgs/msg/Metric.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/cartographer_ros_msgs/msg/Metric.msg -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros_msgs/msg/MetricFamily.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/cartographer_ros_msgs/msg/MetricFamily.msg -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros_msgs/msg/MetricLabel.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/cartographer_ros_msgs/msg/MetricLabel.msg -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros_msgs/msg/SensorTopics.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/cartographer_ros_msgs/msg/SensorTopics.msg -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros_msgs/msg/StatusCode.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/cartographer_ros_msgs/msg/StatusCode.msg -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros_msgs/msg/SubmapEntry.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/cartographer_ros_msgs/msg/SubmapEntry.msg -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros_msgs/msg/SubmapList.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/cartographer_ros_msgs/msg/SubmapList.msg -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros_msgs/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/cartographer_ros_msgs/package.xml -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros_msgs/srv/ReadMetrics.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/cartographer_ros_msgs/srv/ReadMetrics.srv -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros_msgs/srv/SubmapQuery.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/cartographer_ros_msgs/srv/SubmapQuery.srv -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros_msgs/srv/WriteState.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/cartographer_ros_msgs/srv/WriteState.srv -------------------------------------------------------------------------------- /cartographer_ros/cartographer_rviz/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/cartographer_rviz/CHANGELOG.rst -------------------------------------------------------------------------------- /cartographer_ros/cartographer_rviz/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/cartographer_rviz/CMakeLists.txt -------------------------------------------------------------------------------- /cartographer_ros/cartographer_rviz/cartographer_rviz/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: Google 2 | DerivePointerAlignment: false 3 | -------------------------------------------------------------------------------- /cartographer_ros/cartographer_rviz/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/cartographer_rviz/package.xml -------------------------------------------------------------------------------- /cartographer_ros/docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/docs/CMakeLists.txt -------------------------------------------------------------------------------- /cartographer_ros/docs/source/algo_walkthrough.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/docs/source/algo_walkthrough.rst -------------------------------------------------------------------------------- /cartographer_ros/docs/source/assets_writer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/docs/source/assets_writer.rst -------------------------------------------------------------------------------- /cartographer_ros/docs/source/compilation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/docs/source/compilation.rst -------------------------------------------------------------------------------- /cartographer_ros/docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/docs/source/conf.py -------------------------------------------------------------------------------- /cartographer_ros/docs/source/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/docs/source/configuration.rst -------------------------------------------------------------------------------- /cartographer_ros/docs/source/data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/docs/source/data.rst -------------------------------------------------------------------------------- /cartographer_ros/docs/source/demo_2d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/docs/source/demo_2d.gif -------------------------------------------------------------------------------- /cartographer_ros/docs/source/demos.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/docs/source/demos.rst -------------------------------------------------------------------------------- /cartographer_ros/docs/source/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/docs/source/faq.rst -------------------------------------------------------------------------------- /cartographer_ros/docs/source/frames_demo_2d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/docs/source/frames_demo_2d.jpg -------------------------------------------------------------------------------- /cartographer_ros/docs/source/getting_involved.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/docs/source/getting_involved.rst -------------------------------------------------------------------------------- /cartographer_ros/docs/source/going_further.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/docs/source/going_further.rst -------------------------------------------------------------------------------- /cartographer_ros/docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/docs/source/index.rst -------------------------------------------------------------------------------- /cartographer_ros/docs/source/nodes_graph_demo_2d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/docs/source/nodes_graph_demo_2d.jpg -------------------------------------------------------------------------------- /cartographer_ros/docs/source/point_cloud_viewer_demo_3d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/docs/source/point_cloud_viewer_demo_3d.jpg -------------------------------------------------------------------------------- /cartographer_ros/docs/source/ros_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/docs/source/ros_api.rst -------------------------------------------------------------------------------- /cartographer_ros/docs/source/tuning.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/docs/source/tuning.rst -------------------------------------------------------------------------------- /cartographer_ros/docs/source/your_bag.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/docs/source/your_bag.rst -------------------------------------------------------------------------------- /cartographer_ros/jenkins/Dockerfile.kinetic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/jenkins/Dockerfile.kinetic -------------------------------------------------------------------------------- /cartographer_ros/jenkins/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/jenkins/Jenkinsfile -------------------------------------------------------------------------------- /cartographer_ros/jenkins/jenkins-slave: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/jenkins/jenkins-slave -------------------------------------------------------------------------------- /cartographer_ros/jenkins/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/jenkins/worker.py -------------------------------------------------------------------------------- /cartographer_ros/scripts/catkin_test_results.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/scripts/catkin_test_results.sh -------------------------------------------------------------------------------- /cartographer_ros/scripts/check_access_token.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/scripts/check_access_token.sh -------------------------------------------------------------------------------- /cartographer_ros/scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/scripts/install.sh -------------------------------------------------------------------------------- /cartographer_ros/scripts/install_debs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/scripts/install_debs.sh -------------------------------------------------------------------------------- /cartographer_ros/scripts/load_docker_cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/scripts/load_docker_cache.sh -------------------------------------------------------------------------------- /cartographer_ros/scripts/prepare_catkin_workspace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/scripts/prepare_catkin_workspace.sh -------------------------------------------------------------------------------- /cartographer_ros/scripts/ros_entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/scripts/ros_entrypoint.sh -------------------------------------------------------------------------------- /cartographer_ros/scripts/save_docker_cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/scripts/save_docker_cache.sh -------------------------------------------------------------------------------- /cartographer_ros/scripts/update_catkin_workspace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/cartographer_ros/scripts/update_catkin_workspace.sh -------------------------------------------------------------------------------- /frontier_exploration/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.vscode/ -------------------------------------------------------------------------------- /frontier_exploration/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/CMakeLists.txt -------------------------------------------------------------------------------- /frontier_exploration/InstallationInstructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/InstallationInstructions.md -------------------------------------------------------------------------------- /frontier_exploration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/README.md -------------------------------------------------------------------------------- /frontier_exploration/config/decentralised_cartographer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/config/decentralised_cartographer.lua -------------------------------------------------------------------------------- /frontier_exploration/config/p3dx_costmap_common_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/config/p3dx_costmap_common_params.yaml -------------------------------------------------------------------------------- /frontier_exploration/config/p3dx_global_costmap_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/config/p3dx_global_costmap_params.yaml -------------------------------------------------------------------------------- /frontier_exploration/config/p3dx_local_costmap_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/config/p3dx_local_costmap_params.yaml -------------------------------------------------------------------------------- /frontier_exploration/config/pioneer-cartographer-grpc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/config/pioneer-cartographer-grpc.lua -------------------------------------------------------------------------------- /frontier_exploration/config/upload_pioneer3dx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/config/upload_pioneer3dx.xml -------------------------------------------------------------------------------- /frontier_exploration/defs/materials.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/defs/materials.xacro -------------------------------------------------------------------------------- /frontier_exploration/defs/pioneer3at.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/defs/pioneer3at.xacro -------------------------------------------------------------------------------- /frontier_exploration/defs/pioneer3at_body.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/defs/pioneer3at_body.xacro -------------------------------------------------------------------------------- /frontier_exploration/defs/pioneer3dx-lms100.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/defs/pioneer3dx-lms100.xacro -------------------------------------------------------------------------------- /frontier_exploration/defs/pioneer3dx.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/defs/pioneer3dx.xacro -------------------------------------------------------------------------------- /frontier_exploration/defs/pioneer3dx_body.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/defs/pioneer3dx_body.xacro -------------------------------------------------------------------------------- /frontier_exploration/defs/pioneer3dx_wheel.xacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/defs/pioneer3dx_wheel.xacro -------------------------------------------------------------------------------- /frontier_exploration/include/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/include/functions.h -------------------------------------------------------------------------------- /frontier_exploration/include/mtrand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/include/mtrand.h -------------------------------------------------------------------------------- /frontier_exploration/launch/Burgard_assigner.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/launch/Burgard_assigner.launch -------------------------------------------------------------------------------- /frontier_exploration/launch/add_trajectory.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/launch/add_trajectory.launch -------------------------------------------------------------------------------- /frontier_exploration/launch/cartographer.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/launch/cartographer.launch -------------------------------------------------------------------------------- /frontier_exploration/launch/filter.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/launch/filter.launch -------------------------------------------------------------------------------- /frontier_exploration/launch/multi_robot_assigner.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/launch/multi_robot_assigner.launch -------------------------------------------------------------------------------- /frontier_exploration/launch/multi_robot_navigation.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/launch/multi_robot_navigation.launch -------------------------------------------------------------------------------- /frontier_exploration/launch/navigation.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/launch/navigation.launch -------------------------------------------------------------------------------- /frontier_exploration/launch/robot_assigner.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/launch/robot_assigner.launch -------------------------------------------------------------------------------- /frontier_exploration/launch/stage-pioneer-3dx-sick.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/launch/stage-pioneer-3dx-sick.launch -------------------------------------------------------------------------------- /frontier_exploration/meshes/original/body.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/meshes/original/body.stl -------------------------------------------------------------------------------- /frontier_exploration/meshes/original/caster_mount.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/meshes/original/caster_mount.stl -------------------------------------------------------------------------------- /frontier_exploration/meshes/original/caster_plate.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/meshes/original/caster_plate.stl -------------------------------------------------------------------------------- /frontier_exploration/meshes/original/chassis_top.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/meshes/original/chassis_top.stl -------------------------------------------------------------------------------- /frontier_exploration/meshes/original/pioneer3dx.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/meshes/original/pioneer3dx.stl -------------------------------------------------------------------------------- /frontier_exploration/meshes/original/sonars.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/meshes/original/sonars.stl -------------------------------------------------------------------------------- /frontier_exploration/meshes/original/tires.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/meshes/original/tires.stl -------------------------------------------------------------------------------- /frontier_exploration/meshes/original/top_plate.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/meshes/original/top_plate.stl -------------------------------------------------------------------------------- /frontier_exploration/meshes/original/wheels-center.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/meshes/original/wheels-center.stl -------------------------------------------------------------------------------- /frontier_exploration/meshes/p3at_meshes/Coordinates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/meshes/p3at_meshes/Coordinates -------------------------------------------------------------------------------- /frontier_exploration/meshes/p3at_meshes/axle.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/meshes/p3at_meshes/axle.stl -------------------------------------------------------------------------------- /frontier_exploration/meshes/p3at_meshes/back_sonar.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/meshes/p3at_meshes/back_sonar.stl -------------------------------------------------------------------------------- /frontier_exploration/meshes/p3at_meshes/chassis.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/meshes/p3at_meshes/chassis.stl -------------------------------------------------------------------------------- /frontier_exploration/meshes/p3at_meshes/front_sonar.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/meshes/p3at_meshes/front_sonar.stl -------------------------------------------------------------------------------- /frontier_exploration/meshes/p3at_meshes/left_hubcap.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/meshes/p3at_meshes/left_hubcap.stl -------------------------------------------------------------------------------- /frontier_exploration/meshes/p3at_meshes/right_hubcap.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/meshes/p3at_meshes/right_hubcap.stl -------------------------------------------------------------------------------- /frontier_exploration/meshes/p3at_meshes/top.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/meshes/p3at_meshes/top.stl -------------------------------------------------------------------------------- /frontier_exploration/meshes/p3at_meshes/wheel.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/meshes/p3at_meshes/wheel.stl -------------------------------------------------------------------------------- /frontier_exploration/meshes/p3dx_meshes/Coordinates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/meshes/p3dx_meshes/Coordinates -------------------------------------------------------------------------------- /frontier_exploration/meshes/p3dx_meshes/back_rim.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/meshes/p3dx_meshes/back_rim.stl -------------------------------------------------------------------------------- /frontier_exploration/meshes/p3dx_meshes/back_sonar.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/meshes/p3dx_meshes/back_sonar.stl -------------------------------------------------------------------------------- /frontier_exploration/meshes/p3dx_meshes/center_hubcap.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/meshes/p3dx_meshes/center_hubcap.stl -------------------------------------------------------------------------------- /frontier_exploration/meshes/p3dx_meshes/center_wheel.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/meshes/p3dx_meshes/center_wheel.stl -------------------------------------------------------------------------------- /frontier_exploration/meshes/p3dx_meshes/chassis.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/meshes/p3dx_meshes/chassis.stl -------------------------------------------------------------------------------- /frontier_exploration/meshes/p3dx_meshes/front_rim.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/meshes/p3dx_meshes/front_rim.stl -------------------------------------------------------------------------------- /frontier_exploration/meshes/p3dx_meshes/front_sonar.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/meshes/p3dx_meshes/front_sonar.stl -------------------------------------------------------------------------------- /frontier_exploration/meshes/p3dx_meshes/left_hubcap.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/meshes/p3dx_meshes/left_hubcap.stl -------------------------------------------------------------------------------- /frontier_exploration/meshes/p3dx_meshes/left_wheel.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/meshes/p3dx_meshes/left_wheel.stl -------------------------------------------------------------------------------- /frontier_exploration/meshes/p3dx_meshes/lms100.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/meshes/p3dx_meshes/lms100.dae -------------------------------------------------------------------------------- /frontier_exploration/meshes/p3dx_meshes/right_hubcap.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/meshes/p3dx_meshes/right_hubcap.stl -------------------------------------------------------------------------------- /frontier_exploration/meshes/p3dx_meshes/right_wheel.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/meshes/p3dx_meshes/right_wheel.stl -------------------------------------------------------------------------------- /frontier_exploration/meshes/p3dx_meshes/swivel.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/meshes/p3dx_meshes/swivel.stl -------------------------------------------------------------------------------- /frontier_exploration/meshes/p3dx_meshes/top.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/meshes/p3dx_meshes/top.stl -------------------------------------------------------------------------------- /frontier_exploration/msg/FrontierTF.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/msg/FrontierTF.msg -------------------------------------------------------------------------------- /frontier_exploration/msg/InfoList.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/msg/InfoList.msg -------------------------------------------------------------------------------- /frontier_exploration/msg/PointArray.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/msg/PointArray.msg -------------------------------------------------------------------------------- /frontier_exploration/msg/RobotPosGoal.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/msg/RobotPosGoal.msg -------------------------------------------------------------------------------- /frontier_exploration/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/package.xml -------------------------------------------------------------------------------- /frontier_exploration/scripts/Burgard_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/scripts/Burgard_assigner.py -------------------------------------------------------------------------------- /frontier_exploration/scripts/decent_robot_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/scripts/decent_robot_assigner.py -------------------------------------------------------------------------------- /frontier_exploration/scripts/frontier_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/scripts/frontier_filter.py -------------------------------------------------------------------------------- /frontier_exploration/scripts/frontier_opencv_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/scripts/frontier_opencv_detector.py -------------------------------------------------------------------------------- /frontier_exploration/scripts/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/scripts/functions.py -------------------------------------------------------------------------------- /frontier_exploration/scripts/getfrontier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/scripts/getfrontier.py -------------------------------------------------------------------------------- /frontier_exploration/scripts/hungarian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/scripts/hungarian.py -------------------------------------------------------------------------------- /frontier_exploration/src/functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/src/functions.cpp -------------------------------------------------------------------------------- /frontier_exploration/src/mtrand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/src/mtrand.cpp -------------------------------------------------------------------------------- /frontier_exploration/srv/RobotService.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/srv/RobotService.srv -------------------------------------------------------------------------------- /frontier_exploration/stage-worlds/belgioioso_map.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/stage-worlds/belgioioso_map.pgm -------------------------------------------------------------------------------- /frontier_exploration/stage-worlds/pioneer3at-sick.world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/stage-worlds/pioneer3at-sick.world -------------------------------------------------------------------------------- /frontier_exploration/stage-worlds/pioneer3dx-hokuyo.world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/stage-worlds/pioneer3dx-hokuyo.world -------------------------------------------------------------------------------- /frontier_exploration/stage-worlds/pioneer3dx-sick.world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/frontier_exploration/stage-worlds/pioneer3dx-sick.world -------------------------------------------------------------------------------- /navigation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/.gitignore -------------------------------------------------------------------------------- /navigation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/README.md -------------------------------------------------------------------------------- /navigation/amcl/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/CHANGELOG.rst -------------------------------------------------------------------------------- /navigation/amcl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/CMakeLists.txt -------------------------------------------------------------------------------- /navigation/amcl/cfg/AMCL.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/cfg/AMCL.cfg -------------------------------------------------------------------------------- /navigation/amcl/examples/amcl_diff.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/examples/amcl_diff.launch -------------------------------------------------------------------------------- /navigation/amcl/examples/amcl_omni.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/examples/amcl_omni.launch -------------------------------------------------------------------------------- /navigation/amcl/include/amcl/map/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/include/amcl/map/map.h -------------------------------------------------------------------------------- /navigation/amcl/include/amcl/pf/eig3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/include/amcl/pf/eig3.h -------------------------------------------------------------------------------- /navigation/amcl/include/amcl/pf/pf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/include/amcl/pf/pf.h -------------------------------------------------------------------------------- /navigation/amcl/include/amcl/pf/pf_kdtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/include/amcl/pf/pf_kdtree.h -------------------------------------------------------------------------------- /navigation/amcl/include/amcl/pf/pf_pdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/include/amcl/pf/pf_pdf.h -------------------------------------------------------------------------------- /navigation/amcl/include/amcl/pf/pf_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/include/amcl/pf/pf_vector.h -------------------------------------------------------------------------------- /navigation/amcl/include/amcl/sensors/amcl_laser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/include/amcl/sensors/amcl_laser.h -------------------------------------------------------------------------------- /navigation/amcl/include/amcl/sensors/amcl_odom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/include/amcl/sensors/amcl_odom.h -------------------------------------------------------------------------------- /navigation/amcl/include/amcl/sensors/amcl_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/include/amcl/sensors/amcl_sensor.h -------------------------------------------------------------------------------- /navigation/amcl/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/package.xml -------------------------------------------------------------------------------- /navigation/amcl/src/amcl/map/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/src/amcl/map/map.c -------------------------------------------------------------------------------- /navigation/amcl/src/amcl/map/map_cspace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/src/amcl/map/map_cspace.cpp -------------------------------------------------------------------------------- /navigation/amcl/src/amcl/map/map_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/src/amcl/map/map_draw.c -------------------------------------------------------------------------------- /navigation/amcl/src/amcl/map/map_range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/src/amcl/map/map_range.c -------------------------------------------------------------------------------- /navigation/amcl/src/amcl/map/map_store.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/src/amcl/map/map_store.c -------------------------------------------------------------------------------- /navigation/amcl/src/amcl/pf/eig3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/src/amcl/pf/eig3.c -------------------------------------------------------------------------------- /navigation/amcl/src/amcl/pf/pf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/src/amcl/pf/pf.c -------------------------------------------------------------------------------- /navigation/amcl/src/amcl/pf/pf_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/src/amcl/pf/pf_draw.c -------------------------------------------------------------------------------- /navigation/amcl/src/amcl/pf/pf_kdtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/src/amcl/pf/pf_kdtree.c -------------------------------------------------------------------------------- /navigation/amcl/src/amcl/pf/pf_pdf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/src/amcl/pf/pf_pdf.c -------------------------------------------------------------------------------- /navigation/amcl/src/amcl/pf/pf_vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/src/amcl/pf/pf_vector.c -------------------------------------------------------------------------------- /navigation/amcl/src/amcl/sensors/amcl_laser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/src/amcl/sensors/amcl_laser.cpp -------------------------------------------------------------------------------- /navigation/amcl/src/amcl/sensors/amcl_odom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/src/amcl/sensors/amcl_odom.cpp -------------------------------------------------------------------------------- /navigation/amcl/src/amcl/sensors/amcl_sensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/src/amcl/sensors/amcl_sensor.cpp -------------------------------------------------------------------------------- /navigation/amcl/src/amcl_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/src/amcl_node.cpp -------------------------------------------------------------------------------- /navigation/amcl/test/basic_localization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/test/basic_localization.py -------------------------------------------------------------------------------- /navigation/amcl/test/basic_localization_stage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/test/basic_localization_stage.xml -------------------------------------------------------------------------------- /navigation/amcl/test/global_localization_stage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/test/global_localization_stage.xml -------------------------------------------------------------------------------- /navigation/amcl/test/rosie_multilaser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/test/rosie_multilaser.xml -------------------------------------------------------------------------------- /navigation/amcl/test/set_initial_pose.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/test/set_initial_pose.xml -------------------------------------------------------------------------------- /navigation/amcl/test/set_initial_pose_delayed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/test/set_initial_pose_delayed.xml -------------------------------------------------------------------------------- /navigation/amcl/test/set_pose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/test/set_pose.py -------------------------------------------------------------------------------- /navigation/amcl/test/small_loop_crazy_driving_prg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/test/small_loop_crazy_driving_prg.xml -------------------------------------------------------------------------------- /navigation/amcl/test/small_loop_prf.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/test/small_loop_prf.xml -------------------------------------------------------------------------------- /navigation/amcl/test/texas_greenroom_loop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/test/texas_greenroom_loop.xml -------------------------------------------------------------------------------- /navigation/amcl/test/texas_greenroom_loop_corrected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/test/texas_greenroom_loop_corrected.xml -------------------------------------------------------------------------------- /navigation/amcl/test/texas_willow_hallway_loop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/amcl/test/texas_willow_hallway_loop.xml -------------------------------------------------------------------------------- /navigation/base_local_planner/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/base_local_planner/CHANGELOG.rst -------------------------------------------------------------------------------- /navigation/base_local_planner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/base_local_planner/CMakeLists.txt -------------------------------------------------------------------------------- /navigation/base_local_planner/blp_plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/base_local_planner/blp_plugin.xml -------------------------------------------------------------------------------- /navigation/base_local_planner/cfg/BaseLocalPlanner.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/base_local_planner/cfg/BaseLocalPlanner.cfg -------------------------------------------------------------------------------- /navigation/base_local_planner/cfg/LocalPlannerLimits.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/base_local_planner/cfg/LocalPlannerLimits.cfg -------------------------------------------------------------------------------- /navigation/base_local_planner/msg/Position2DInt.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/base_local_planner/msg/Position2DInt.msg -------------------------------------------------------------------------------- /navigation/base_local_planner/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/base_local_planner/package.xml -------------------------------------------------------------------------------- /navigation/base_local_planner/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/base_local_planner/setup.py -------------------------------------------------------------------------------- /navigation/base_local_planner/src/costmap_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/base_local_planner/src/costmap_model.cpp -------------------------------------------------------------------------------- /navigation/base_local_planner/src/footprint_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/base_local_planner/src/footprint_helper.cpp -------------------------------------------------------------------------------- /navigation/base_local_planner/src/goal_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/base_local_planner/src/goal_functions.cpp -------------------------------------------------------------------------------- /navigation/base_local_planner/src/local_planner_limits/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /navigation/base_local_planner/src/local_planner_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/base_local_planner/src/local_planner_util.cpp -------------------------------------------------------------------------------- /navigation/base_local_planner/src/map_cell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/base_local_planner/src/map_cell.cpp -------------------------------------------------------------------------------- /navigation/base_local_planner/src/map_grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/base_local_planner/src/map_grid.cpp -------------------------------------------------------------------------------- /navigation/base_local_planner/src/map_grid_visualizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/base_local_planner/src/map_grid_visualizer.cpp -------------------------------------------------------------------------------- /navigation/base_local_planner/src/odometry_helper_ros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/base_local_planner/src/odometry_helper_ros.cpp -------------------------------------------------------------------------------- /navigation/base_local_planner/src/point_grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/base_local_planner/src/point_grid.cpp -------------------------------------------------------------------------------- /navigation/base_local_planner/src/trajectory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/base_local_planner/src/trajectory.cpp -------------------------------------------------------------------------------- /navigation/base_local_planner/src/trajectory_planner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/base_local_planner/src/trajectory_planner.cpp -------------------------------------------------------------------------------- /navigation/base_local_planner/src/voxel_grid_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/base_local_planner/src/voxel_grid_model.cpp -------------------------------------------------------------------------------- /navigation/base_local_planner/test/gtest_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/base_local_planner/test/gtest_main.cpp -------------------------------------------------------------------------------- /navigation/base_local_planner/test/line_iterator_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/base_local_planner/test/line_iterator_test.cpp -------------------------------------------------------------------------------- /navigation/base_local_planner/test/map_grid_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/base_local_planner/test/map_grid_test.cpp -------------------------------------------------------------------------------- /navigation/base_local_planner/test/utest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/base_local_planner/test/utest.cpp -------------------------------------------------------------------------------- /navigation/base_local_planner/test/wavefront_map_accessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/base_local_planner/test/wavefront_map_accessor.h -------------------------------------------------------------------------------- /navigation/carrot_planner/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/carrot_planner/CHANGELOG.rst -------------------------------------------------------------------------------- /navigation/carrot_planner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/carrot_planner/CMakeLists.txt -------------------------------------------------------------------------------- /navigation/carrot_planner/bgp_plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/carrot_planner/bgp_plugin.xml -------------------------------------------------------------------------------- /navigation/carrot_planner/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/carrot_planner/package.xml -------------------------------------------------------------------------------- /navigation/carrot_planner/src/carrot_planner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/carrot_planner/src/carrot_planner.cpp -------------------------------------------------------------------------------- /navigation/clear_costmap_recovery/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/clear_costmap_recovery/CHANGELOG.rst -------------------------------------------------------------------------------- /navigation/clear_costmap_recovery/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/clear_costmap_recovery/CMakeLists.txt -------------------------------------------------------------------------------- /navigation/clear_costmap_recovery/ccr_plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/clear_costmap_recovery/ccr_plugin.xml -------------------------------------------------------------------------------- /navigation/clear_costmap_recovery/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/clear_costmap_recovery/package.xml -------------------------------------------------------------------------------- /navigation/clear_costmap_recovery/test/clear_tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/clear_costmap_recovery/test/clear_tester.cpp -------------------------------------------------------------------------------- /navigation/clear_costmap_recovery/test/clear_tests.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/clear_costmap_recovery/test/clear_tests.launch -------------------------------------------------------------------------------- /navigation/clear_costmap_recovery/test/params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/clear_costmap_recovery/test/params.yaml -------------------------------------------------------------------------------- /navigation/costmap_2d/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/CHANGELOG.rst -------------------------------------------------------------------------------- /navigation/costmap_2d/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/CMakeLists.txt -------------------------------------------------------------------------------- /navigation/costmap_2d/cfg/Costmap2D.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/cfg/Costmap2D.cfg -------------------------------------------------------------------------------- /navigation/costmap_2d/cfg/GenericPlugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/cfg/GenericPlugin.cfg -------------------------------------------------------------------------------- /navigation/costmap_2d/cfg/InflationPlugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/cfg/InflationPlugin.cfg -------------------------------------------------------------------------------- /navigation/costmap_2d/cfg/ObstaclePlugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/cfg/ObstaclePlugin.cfg -------------------------------------------------------------------------------- /navigation/costmap_2d/cfg/VoxelPlugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/cfg/VoxelPlugin.cfg -------------------------------------------------------------------------------- /navigation/costmap_2d/costmap_plugins.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/costmap_plugins.xml -------------------------------------------------------------------------------- /navigation/costmap_2d/include/costmap_2d/array_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/include/costmap_2d/array_parser.h -------------------------------------------------------------------------------- /navigation/costmap_2d/include/costmap_2d/cost_values.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/include/costmap_2d/cost_values.h -------------------------------------------------------------------------------- /navigation/costmap_2d/include/costmap_2d/costmap_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/include/costmap_2d/costmap_2d.h -------------------------------------------------------------------------------- /navigation/costmap_2d/include/costmap_2d/costmap_2d_ros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/include/costmap_2d/costmap_2d_ros.h -------------------------------------------------------------------------------- /navigation/costmap_2d/include/costmap_2d/costmap_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/include/costmap_2d/costmap_layer.h -------------------------------------------------------------------------------- /navigation/costmap_2d/include/costmap_2d/costmap_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/include/costmap_2d/costmap_math.h -------------------------------------------------------------------------------- /navigation/costmap_2d/include/costmap_2d/footprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/include/costmap_2d/footprint.h -------------------------------------------------------------------------------- /navigation/costmap_2d/include/costmap_2d/inflation_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/include/costmap_2d/inflation_layer.h -------------------------------------------------------------------------------- /navigation/costmap_2d/include/costmap_2d/layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/include/costmap_2d/layer.h -------------------------------------------------------------------------------- /navigation/costmap_2d/include/costmap_2d/layered_costmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/include/costmap_2d/layered_costmap.h -------------------------------------------------------------------------------- /navigation/costmap_2d/include/costmap_2d/observation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/include/costmap_2d/observation.h -------------------------------------------------------------------------------- /navigation/costmap_2d/include/costmap_2d/obstacle_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/include/costmap_2d/obstacle_layer.h -------------------------------------------------------------------------------- /navigation/costmap_2d/include/costmap_2d/static_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/include/costmap_2d/static_layer.h -------------------------------------------------------------------------------- /navigation/costmap_2d/include/costmap_2d/testing_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/include/costmap_2d/testing_helper.h -------------------------------------------------------------------------------- /navigation/costmap_2d/include/costmap_2d/voxel_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/include/costmap_2d/voxel_layer.h -------------------------------------------------------------------------------- /navigation/costmap_2d/launch/example.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/launch/example.launch -------------------------------------------------------------------------------- /navigation/costmap_2d/launch/example_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/launch/example_params.yaml -------------------------------------------------------------------------------- /navigation/costmap_2d/msg/VoxelGrid.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/msg/VoxelGrid.msg -------------------------------------------------------------------------------- /navigation/costmap_2d/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/package.xml -------------------------------------------------------------------------------- /navigation/costmap_2d/plugins/inflation_layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/plugins/inflation_layer.cpp -------------------------------------------------------------------------------- /navigation/costmap_2d/plugins/obstacle_layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/plugins/obstacle_layer.cpp -------------------------------------------------------------------------------- /navigation/costmap_2d/plugins/static_layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/plugins/static_layer.cpp -------------------------------------------------------------------------------- /navigation/costmap_2d/plugins/voxel_layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/plugins/voxel_layer.cpp -------------------------------------------------------------------------------- /navigation/costmap_2d/src/array_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/src/array_parser.cpp -------------------------------------------------------------------------------- /navigation/costmap_2d/src/costmap_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/src/costmap_2d.cpp -------------------------------------------------------------------------------- /navigation/costmap_2d/src/costmap_2d_cloud.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/src/costmap_2d_cloud.cpp -------------------------------------------------------------------------------- /navigation/costmap_2d/src/costmap_2d_markers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/src/costmap_2d_markers.cpp -------------------------------------------------------------------------------- /navigation/costmap_2d/src/costmap_2d_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/src/costmap_2d_node.cpp -------------------------------------------------------------------------------- /navigation/costmap_2d/src/costmap_2d_publisher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/src/costmap_2d_publisher.cpp -------------------------------------------------------------------------------- /navigation/costmap_2d/src/costmap_2d_ros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/src/costmap_2d_ros.cpp -------------------------------------------------------------------------------- /navigation/costmap_2d/src/costmap_layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/src/costmap_layer.cpp -------------------------------------------------------------------------------- /navigation/costmap_2d/src/costmap_math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/src/costmap_math.cpp -------------------------------------------------------------------------------- /navigation/costmap_2d/src/footprint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/src/footprint.cpp -------------------------------------------------------------------------------- /navigation/costmap_2d/src/layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/src/layer.cpp -------------------------------------------------------------------------------- /navigation/costmap_2d/src/layered_costmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/src/layered_costmap.cpp -------------------------------------------------------------------------------- /navigation/costmap_2d/src/observation_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/src/observation_buffer.cpp -------------------------------------------------------------------------------- /navigation/costmap_2d/test/TenByTen.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/test/TenByTen.pgm -------------------------------------------------------------------------------- /navigation/costmap_2d/test/TenByTen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/test/TenByTen.yaml -------------------------------------------------------------------------------- /navigation/costmap_2d/test/array_parser_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/test/array_parser_test.cpp -------------------------------------------------------------------------------- /navigation/costmap_2d/test/coordinates_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/test/coordinates_test.cpp -------------------------------------------------------------------------------- /navigation/costmap_2d/test/costmap_params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/test/costmap_params.yaml -------------------------------------------------------------------------------- /navigation/costmap_2d/test/costmap_tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/test/costmap_tester.cpp -------------------------------------------------------------------------------- /navigation/costmap_2d/test/footprint_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/test/footprint_tests.cpp -------------------------------------------------------------------------------- /navigation/costmap_2d/test/footprint_tests.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/test/footprint_tests.launch -------------------------------------------------------------------------------- /navigation/costmap_2d/test/inflation_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/test/inflation_tests.cpp -------------------------------------------------------------------------------- /navigation/costmap_2d/test/inflation_tests.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/test/inflation_tests.launch -------------------------------------------------------------------------------- /navigation/costmap_2d/test/module_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/test/module_tests.cpp -------------------------------------------------------------------------------- /navigation/costmap_2d/test/obstacle_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/test/obstacle_tests.cpp -------------------------------------------------------------------------------- /navigation/costmap_2d/test/obstacle_tests.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/test/obstacle_tests.launch -------------------------------------------------------------------------------- /navigation/costmap_2d/test/simple_driving_test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/test/simple_driving_test.xml -------------------------------------------------------------------------------- /navigation/costmap_2d/test/static_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/test/static_tests.cpp -------------------------------------------------------------------------------- /navigation/costmap_2d/test/static_tests.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/costmap_2d/test/static_tests.launch -------------------------------------------------------------------------------- /navigation/dwa_local_planner/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/dwa_local_planner/CHANGELOG.rst -------------------------------------------------------------------------------- /navigation/dwa_local_planner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/dwa_local_planner/CMakeLists.txt -------------------------------------------------------------------------------- /navigation/dwa_local_planner/blp_plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/dwa_local_planner/blp_plugin.xml -------------------------------------------------------------------------------- /navigation/dwa_local_planner/cfg/DWAPlanner.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/dwa_local_planner/cfg/DWAPlanner.cfg -------------------------------------------------------------------------------- /navigation/dwa_local_planner/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/dwa_local_planner/package.xml -------------------------------------------------------------------------------- /navigation/dwa_local_planner/src/dwa_planner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/dwa_local_planner/src/dwa_planner.cpp -------------------------------------------------------------------------------- /navigation/dwa_local_planner/src/dwa_planner_ros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/dwa_local_planner/src/dwa_planner_ros.cpp -------------------------------------------------------------------------------- /navigation/fake_localization/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/fake_localization/CHANGELOG.rst -------------------------------------------------------------------------------- /navigation/fake_localization/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/fake_localization/CMakeLists.txt -------------------------------------------------------------------------------- /navigation/fake_localization/fake_localization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/fake_localization/fake_localization.cpp -------------------------------------------------------------------------------- /navigation/fake_localization/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/fake_localization/package.xml -------------------------------------------------------------------------------- /navigation/fake_localization/static_odom_broadcaster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/fake_localization/static_odom_broadcaster.py -------------------------------------------------------------------------------- /navigation/global_planner/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/global_planner/CHANGELOG.rst -------------------------------------------------------------------------------- /navigation/global_planner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/global_planner/CMakeLists.txt -------------------------------------------------------------------------------- /navigation/global_planner/bgp_plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/global_planner/bgp_plugin.xml -------------------------------------------------------------------------------- /navigation/global_planner/cfg/GlobalPlanner.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/global_planner/cfg/GlobalPlanner.cfg -------------------------------------------------------------------------------- /navigation/global_planner/include/global_planner/astar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/global_planner/include/global_planner/astar.h -------------------------------------------------------------------------------- /navigation/global_planner/include/global_planner/dijkstra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/global_planner/include/global_planner/dijkstra.h -------------------------------------------------------------------------------- /navigation/global_planner/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/global_planner/package.xml -------------------------------------------------------------------------------- /navigation/global_planner/src/astar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/global_planner/src/astar.cpp -------------------------------------------------------------------------------- /navigation/global_planner/src/dijkstra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/global_planner/src/dijkstra.cpp -------------------------------------------------------------------------------- /navigation/global_planner/src/gradient_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/global_planner/src/gradient_path.cpp -------------------------------------------------------------------------------- /navigation/global_planner/src/grid_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/global_planner/src/grid_path.cpp -------------------------------------------------------------------------------- /navigation/global_planner/src/orientation_filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/global_planner/src/orientation_filter.cpp -------------------------------------------------------------------------------- /navigation/global_planner/src/plan_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/global_planner/src/plan_node.cpp -------------------------------------------------------------------------------- /navigation/global_planner/src/planner_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/global_planner/src/planner_core.cpp -------------------------------------------------------------------------------- /navigation/global_planner/src/quadratic_calculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/global_planner/src/quadratic_calculator.cpp -------------------------------------------------------------------------------- /navigation/map_server/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/map_server/CHANGELOG.rst -------------------------------------------------------------------------------- /navigation/map_server/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/map_server/CMakeLists.txt -------------------------------------------------------------------------------- /navigation/map_server/include/map_server/image_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/map_server/include/map_server/image_loader.h -------------------------------------------------------------------------------- /navigation/map_server/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/map_server/package.xml -------------------------------------------------------------------------------- /navigation/map_server/scripts/crop_map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/map_server/scripts/crop_map -------------------------------------------------------------------------------- /navigation/map_server/src/image_loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/map_server/src/image_loader.cpp -------------------------------------------------------------------------------- /navigation/map_server/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/map_server/src/main.cpp -------------------------------------------------------------------------------- /navigation/map_server/src/map_saver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/map_server/src/map_saver.cpp -------------------------------------------------------------------------------- /navigation/map_server/src/map_server.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/map_server/src/map_server.dox -------------------------------------------------------------------------------- /navigation/map_server/test/consumer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/map_server/test/consumer.py -------------------------------------------------------------------------------- /navigation/map_server/test/rtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/map_server/test/rtest.cpp -------------------------------------------------------------------------------- /navigation/map_server/test/rtest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/map_server/test/rtest.xml -------------------------------------------------------------------------------- /navigation/map_server/test/test_constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/map_server/test/test_constants.cpp -------------------------------------------------------------------------------- /navigation/map_server/test/test_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/map_server/test/test_constants.h -------------------------------------------------------------------------------- /navigation/map_server/test/testmap.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/map_server/test/testmap.bmp -------------------------------------------------------------------------------- /navigation/map_server/test/testmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/map_server/test/testmap.png -------------------------------------------------------------------------------- /navigation/map_server/test/testmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/map_server/test/testmap.yaml -------------------------------------------------------------------------------- /navigation/map_server/test/utest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/map_server/test/utest.cpp -------------------------------------------------------------------------------- /navigation/move_base/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/move_base/CHANGELOG.rst -------------------------------------------------------------------------------- /navigation/move_base/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/move_base/CMakeLists.txt -------------------------------------------------------------------------------- /navigation/move_base/cfg/MoveBase.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/move_base/cfg/MoveBase.cfg -------------------------------------------------------------------------------- /navigation/move_base/include/move_base/move_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/move_base/include/move_base/move_base.h -------------------------------------------------------------------------------- /navigation/move_base/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/move_base/package.xml -------------------------------------------------------------------------------- /navigation/move_base/planner_test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/move_base/planner_test.xml -------------------------------------------------------------------------------- /navigation/move_base/src/move_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/move_base/src/move_base.cpp -------------------------------------------------------------------------------- /navigation/move_base/src/move_base_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/move_base/src/move_base_node.cpp -------------------------------------------------------------------------------- /navigation/move_slow_and_clear/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/move_slow_and_clear/CHANGELOG.rst -------------------------------------------------------------------------------- /navigation/move_slow_and_clear/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/move_slow_and_clear/CMakeLists.txt -------------------------------------------------------------------------------- /navigation/move_slow_and_clear/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/move_slow_and_clear/package.xml -------------------------------------------------------------------------------- /navigation/move_slow_and_clear/recovery_plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/move_slow_and_clear/recovery_plugin.xml -------------------------------------------------------------------------------- /navigation/nav_core/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/nav_core/CHANGELOG.rst -------------------------------------------------------------------------------- /navigation/nav_core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/nav_core/CMakeLists.txt -------------------------------------------------------------------------------- /navigation/nav_core/include/nav_core/parameter_magic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/nav_core/include/nav_core/parameter_magic.h -------------------------------------------------------------------------------- /navigation/nav_core/include/nav_core/recovery_behavior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/nav_core/include/nav_core/recovery_behavior.h -------------------------------------------------------------------------------- /navigation/nav_core/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/nav_core/package.xml -------------------------------------------------------------------------------- /navigation/navfn/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/navfn/CHANGELOG.rst -------------------------------------------------------------------------------- /navigation/navfn/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/navfn/CMakeLists.txt -------------------------------------------------------------------------------- /navigation/navfn/Makefile.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/navfn/Makefile.orig -------------------------------------------------------------------------------- /navigation/navfn/bgp_plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/navfn/bgp_plugin.xml -------------------------------------------------------------------------------- /navigation/navfn/include/navfn/navfn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/navfn/include/navfn/navfn.h -------------------------------------------------------------------------------- /navigation/navfn/include/navfn/navfn_ros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/navfn/include/navfn/navfn_ros.h -------------------------------------------------------------------------------- /navigation/navfn/include/navfn/navwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/navfn/include/navfn/navwin.h -------------------------------------------------------------------------------- /navigation/navfn/include/navfn/potarr_point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/navfn/include/navfn/potarr_point.h -------------------------------------------------------------------------------- /navigation/navfn/include/navfn/read_pgm_costmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/navfn/include/navfn/read_pgm_costmap.h -------------------------------------------------------------------------------- /navigation/navfn/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/navfn/package.xml -------------------------------------------------------------------------------- /navigation/navfn/src/navfn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/navfn/src/navfn.cpp -------------------------------------------------------------------------------- /navigation/navfn/src/navfn_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/navfn/src/navfn_node.cpp -------------------------------------------------------------------------------- /navigation/navfn/src/navfn_ros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/navfn/src/navfn_ros.cpp -------------------------------------------------------------------------------- /navigation/navfn/src/navtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/navfn/src/navtest.cpp -------------------------------------------------------------------------------- /navigation/navfn/src/navwin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/navfn/src/navwin.cpp -------------------------------------------------------------------------------- /navigation/navfn/src/read_pgm_costmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/navfn/src/read_pgm_costmap.cpp -------------------------------------------------------------------------------- /navigation/navfn/srv/MakeNavPlan.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/navfn/srv/MakeNavPlan.srv -------------------------------------------------------------------------------- /navigation/navfn/srv/SetCostmap.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/navfn/srv/SetCostmap.srv -------------------------------------------------------------------------------- /navigation/navfn/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/navfn/test/CMakeLists.txt -------------------------------------------------------------------------------- /navigation/navfn/test/path_calc_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/navfn/test/path_calc_test.cpp -------------------------------------------------------------------------------- /navigation/navfn/test/willow_costmap.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/navfn/test/willow_costmap.pgm -------------------------------------------------------------------------------- /navigation/navigation/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/navigation/CHANGELOG.rst -------------------------------------------------------------------------------- /navigation/navigation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/navigation/CMakeLists.txt -------------------------------------------------------------------------------- /navigation/navigation/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/navigation/README.rst -------------------------------------------------------------------------------- /navigation/navigation/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/navigation/package.xml -------------------------------------------------------------------------------- /navigation/rotate_recovery/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/rotate_recovery/CHANGELOG.rst -------------------------------------------------------------------------------- /navigation/rotate_recovery/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/rotate_recovery/CMakeLists.txt -------------------------------------------------------------------------------- /navigation/rotate_recovery/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/rotate_recovery/package.xml -------------------------------------------------------------------------------- /navigation/rotate_recovery/rotate_plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/rotate_recovery/rotate_plugin.xml -------------------------------------------------------------------------------- /navigation/rotate_recovery/src/rotate_recovery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/rotate_recovery/src/rotate_recovery.cpp -------------------------------------------------------------------------------- /navigation/voxel_grid/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/voxel_grid/CHANGELOG.rst -------------------------------------------------------------------------------- /navigation/voxel_grid/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/voxel_grid/CMakeLists.txt -------------------------------------------------------------------------------- /navigation/voxel_grid/include/voxel_grid/voxel_grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/voxel_grid/include/voxel_grid/voxel_grid.h -------------------------------------------------------------------------------- /navigation/voxel_grid/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/voxel_grid/package.xml -------------------------------------------------------------------------------- /navigation/voxel_grid/src/voxel_grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/voxel_grid/src/voxel_grid.cpp -------------------------------------------------------------------------------- /navigation/voxel_grid/test/voxel_grid_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/navigation/voxel_grid/test/voxel_grid_tests.cpp -------------------------------------------------------------------------------- /stage_ros_private/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | .svn 3 | -------------------------------------------------------------------------------- /stage_ros_private/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/stage_ros_private/.travis.yml -------------------------------------------------------------------------------- /stage_ros_private/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/stage_ros_private/CHANGELOG.rst -------------------------------------------------------------------------------- /stage_ros_private/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/stage_ros_private/CMakeLists.txt -------------------------------------------------------------------------------- /stage_ros_private/README.md: -------------------------------------------------------------------------------- 1 | # stage_ros_private 2 | -------------------------------------------------------------------------------- /stage_ros_private/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/stage_ros_private/package.xml -------------------------------------------------------------------------------- /stage_ros_private/rviz/stage.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/stage_ros_private/rviz/stage.rviz -------------------------------------------------------------------------------- /stage_ros_private/scripts/upgrade-world.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/stage_ros_private/scripts/upgrade-world.sh -------------------------------------------------------------------------------- /stage_ros_private/src/stageros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/stage_ros_private/src/stageros.cpp -------------------------------------------------------------------------------- /stage_ros_private/test/hztest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/stage_ros_private/test/hztest.xml -------------------------------------------------------------------------------- /stage_ros_private/test/intensity_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/stage_ros_private/test/intensity_test.py -------------------------------------------------------------------------------- /stage_ros_private/test/intensity_test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/stage_ros_private/test/intensity_test.xml -------------------------------------------------------------------------------- /stage_ros_private/world/erratic-inc.world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/stage_ros_private/world/erratic-inc.world -------------------------------------------------------------------------------- /stage_ros_private/world/intense.world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/stage_ros_private/world/intense.world -------------------------------------------------------------------------------- /stage_ros_private/world/willow-erratic.world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/stage_ros_private/world/willow-erratic.world -------------------------------------------------------------------------------- /stage_ros_private/world/willow-four-erratics.world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/stage_ros_private/world/willow-four-erratics.world -------------------------------------------------------------------------------- /stage_ros_private/world/willow-full.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/decentralized_multi_robot_exploration/HEAD/stage_ros_private/world/willow-full.pgm --------------------------------------------------------------------------------