├── 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 ├── fr079-dataset ├── README.md ├── fr079-original-uncorrected.bag.gz ├── fr079.lua └── fr079.rviz └── two-pioneers-p3dx-fer ├── README.md └── two-pioneers-p3dx-fer.tar.xz /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/README.md -------------------------------------------------------------------------------- /cartographer/.bazelci/presubmit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/.bazelci/presubmit.yml -------------------------------------------------------------------------------- /cartographer/.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/.bazelrc -------------------------------------------------------------------------------- /cartographer/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/.dockerignore -------------------------------------------------------------------------------- /cartographer/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /cartographer/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | bazel-* 3 | -------------------------------------------------------------------------------- /cartographer/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/.travis.yml -------------------------------------------------------------------------------- /cartographer/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/AUTHORS -------------------------------------------------------------------------------- /cartographer/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/BUILD.bazel -------------------------------------------------------------------------------- /cartographer/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/CHANGELOG.rst -------------------------------------------------------------------------------- /cartographer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/CMakeLists.txt -------------------------------------------------------------------------------- /cartographer/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/CONTRIBUTING.md -------------------------------------------------------------------------------- /cartographer/Dockerfile.jessie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/Dockerfile.jessie -------------------------------------------------------------------------------- /cartographer/Dockerfile.stretch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/Dockerfile.stretch -------------------------------------------------------------------------------- /cartographer/Dockerfile.trusty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/Dockerfile.trusty -------------------------------------------------------------------------------- /cartographer/Dockerfile.trusty.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/Dockerfile.trusty.bazel -------------------------------------------------------------------------------- /cartographer/Dockerfile.xenial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/Dockerfile.xenial -------------------------------------------------------------------------------- /cartographer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/LICENSE -------------------------------------------------------------------------------- /cartographer/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/README.rst -------------------------------------------------------------------------------- /cartographer/RELEASING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/RELEASING.rst -------------------------------------------------------------------------------- /cartographer/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/WORKSPACE -------------------------------------------------------------------------------- /cartographer/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/azure-pipelines.yml -------------------------------------------------------------------------------- /cartographer/bazel/repositories.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/bazel/repositories.bzl -------------------------------------------------------------------------------- /cartographer/bazel/third_party/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/bazel/third_party/BUILD.bazel -------------------------------------------------------------------------------- /cartographer/bazel/third_party/cairo/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/bazel/third_party/cairo/BUILD.bazel -------------------------------------------------------------------------------- /cartographer/bazel/third_party/cairo/cairo-features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/bazel/third_party/cairo/cairo-features.h -------------------------------------------------------------------------------- /cartographer/bazel/third_party/cairo/cairo.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/bazel/third_party/cairo/cairo.BUILD -------------------------------------------------------------------------------- /cartographer/bazel/third_party/cairo/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/bazel/third_party/cairo/config.h -------------------------------------------------------------------------------- /cartographer/bazel/third_party/ceres.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/bazel/third_party/ceres.BUILD -------------------------------------------------------------------------------- /cartographer/bazel/third_party/eigen.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/bazel/third_party/eigen.BUILD -------------------------------------------------------------------------------- /cartographer/bazel/third_party/expat.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/bazel/third_party/expat.BUILD -------------------------------------------------------------------------------- /cartographer/bazel/third_party/fontconfig/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/bazel/third_party/fontconfig/BUILD.bazel -------------------------------------------------------------------------------- /cartographer/bazel/third_party/fontconfig/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/bazel/third_party/fontconfig/config.h -------------------------------------------------------------------------------- /cartographer/bazel/third_party/fontconfig/fontconfig.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/bazel/third_party/fontconfig/fontconfig.BUILD -------------------------------------------------------------------------------- /cartographer/bazel/third_party/freetype2.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/bazel/third_party/freetype2.BUILD -------------------------------------------------------------------------------- /cartographer/bazel/third_party/gd.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/bazel/third_party/gd.BUILD -------------------------------------------------------------------------------- /cartographer/bazel/third_party/libjpeg.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/bazel/third_party/libjpeg.BUILD -------------------------------------------------------------------------------- /cartographer/bazel/third_party/libpng.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/bazel/third_party/libpng.BUILD -------------------------------------------------------------------------------- /cartographer/bazel/third_party/lua.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/bazel/third_party/lua.BUILD -------------------------------------------------------------------------------- /cartographer/bazel/third_party/pixman/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/bazel/third_party/pixman/BUILD.bazel -------------------------------------------------------------------------------- /cartographer/bazel/third_party/pixman/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/bazel/third_party/pixman/config.h -------------------------------------------------------------------------------- /cartographer/bazel/third_party/pixman/pixman.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/bazel/third_party/pixman/pixman.BUILD -------------------------------------------------------------------------------- /cartographer/bazel/third_party/zlib.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/bazel/third_party/zlib.BUILD -------------------------------------------------------------------------------- /cartographer/cartographer-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/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/cartographer_frontier_detection/HEAD/cartographer/cartographer/BUILD.bazel -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/BUILD.bazel -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/client/map_builder_stub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/client/map_builder_stub.cc -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/client/map_builder_stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/client/map_builder_stub.h -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/client/pose_graph_stub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/client/pose_graph_stub.cc -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/client/pose_graph_stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/client/pose_graph_stub.h -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/client/trajectory_builder_stub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/client/trajectory_builder_stub.cc -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/client/trajectory_builder_stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/client/trajectory_builder_stub.h -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/client_server_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/client_server_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/handlers/add_imu_data_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/handlers/add_imu_data_handler.cc -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/handlers/add_imu_data_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/handlers/add_imu_data_handler.h -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/handlers/add_landmark_data_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/handlers/add_landmark_data_handler.h -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/handlers/add_odometry_data_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/handlers/add_odometry_data_handler.h -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/handlers/add_trajectory_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/handlers/add_trajectory_handler.cc -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/handlers/add_trajectory_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/handlers/add_trajectory_handler.h -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/handlers/delete_trajectory_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/handlers/delete_trajectory_handler.h -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/handlers/finish_trajectory_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/handlers/finish_trajectory_handler.h -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/handlers/get_all_submap_poses.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/handlers/get_all_submap_poses.cc -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/handlers/get_all_submap_poses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/handlers/get_all_submap_poses.h -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/handlers/get_constraints_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/handlers/get_constraints_handler.cc -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/handlers/get_constraints_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/handlers/get_constraints_handler.h -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/handlers/get_submap_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/handlers/get_submap_handler.cc -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/handlers/get_submap_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/handlers/get_submap_handler.h -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/handlers/load_state_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/handlers/load_state_handler.cc -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/handlers/load_state_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/handlers/load_state_handler.h -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/handlers/set_landmark_pose_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/handlers/set_landmark_pose_handler.h -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/handlers/write_state_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/handlers/write_state_handler.cc -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/handlers/write_state_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/handlers/write_state_handler.h -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/local_trajectory_uploader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/local_trajectory_uploader.cc -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/local_trajectory_uploader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/local_trajectory_uploader.h -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/local_trajectory_uploader_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/local_trajectory_uploader_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/map_builder_context_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/map_builder_context_impl.cc -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/map_builder_context_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/map_builder_context_impl.h -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/map_builder_context_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/map_builder_context_interface.h -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/map_builder_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/map_builder_server.cc -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/map_builder_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/map_builder_server.h -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/mapping/serialization.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/mapping/serialization.cc -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/mapping/serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/mapping/serialization.h -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/sensor/serialization.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/sensor/serialization.cc -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/sensor/serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/sensor/serialization.h -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/testing/handler_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/testing/handler_test.h -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/testing/mock_map_builder_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/testing/mock_map_builder_context.h -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/testing/test_helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/testing/test_helpers.cc -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/internal/testing/test_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/internal/testing/test_helpers.h -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/map_builder_server_interface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/map_builder_server_interface.cc -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/map_builder_server_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/map_builder_server_interface.h -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/map_builder_server_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/map_builder_server_main.cc -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/map_builder_server_options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/map_builder_server_options.cc -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/map_builder_server_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/map_builder_server_options.h -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/metrics/prometheus/family_factory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/metrics/prometheus/family_factory.cc -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/metrics/prometheus/family_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/metrics/prometheus/family_factory.h -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/metrics/prometheus/metrics_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/metrics/prometheus/metrics_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/proto/map_builder_server_options.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/proto/map_builder_server_options.proto -------------------------------------------------------------------------------- /cartographer/cartographer/cloud/proto/map_builder_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/cloud/proto/map_builder_service.proto -------------------------------------------------------------------------------- /cartographer/cartographer/common/blocking_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/common/blocking_queue.h -------------------------------------------------------------------------------- /cartographer/cartographer/common/blocking_queue_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/common/blocking_queue_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/common/ceres_solver_options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/common/ceres_solver_options.cc -------------------------------------------------------------------------------- /cartographer/cartographer/common/ceres_solver_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/common/ceres_solver_options.h -------------------------------------------------------------------------------- /cartographer/cartographer/common/config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/common/config.h.cmake -------------------------------------------------------------------------------- /cartographer/cartographer/common/configuration_file_resolver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/common/configuration_file_resolver.cc -------------------------------------------------------------------------------- /cartographer/cartographer/common/configuration_file_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/common/configuration_file_resolver.h -------------------------------------------------------------------------------- /cartographer/cartographer/common/configuration_files_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/common/configuration_files_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/common/fixed_ratio_sampler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/common/fixed_ratio_sampler.cc -------------------------------------------------------------------------------- /cartographer/cartographer/common/fixed_ratio_sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/common/fixed_ratio_sampler.h -------------------------------------------------------------------------------- /cartographer/cartographer/common/fixed_ratio_sampler_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/common/fixed_ratio_sampler_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/common/histogram.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/common/histogram.cc -------------------------------------------------------------------------------- /cartographer/cartographer/common/histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/common/histogram.h -------------------------------------------------------------------------------- /cartographer/cartographer/common/internal/testing/thread_pool_for_testing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/common/internal/testing/thread_pool_for_testing.cc -------------------------------------------------------------------------------- /cartographer/cartographer/common/internal/testing/thread_pool_for_testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/common/internal/testing/thread_pool_for_testing.h -------------------------------------------------------------------------------- /cartographer/cartographer/common/lockless_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/common/lockless_queue.h -------------------------------------------------------------------------------- /cartographer/cartographer/common/lockless_queue_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/common/lockless_queue_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/common/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/common/lua.h -------------------------------------------------------------------------------- /cartographer/cartographer/common/lua_parameter_dictionary.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/common/lua_parameter_dictionary.cc -------------------------------------------------------------------------------- /cartographer/cartographer/common/lua_parameter_dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/common/lua_parameter_dictionary.h -------------------------------------------------------------------------------- /cartographer/cartographer/common/lua_parameter_dictionary_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/common/lua_parameter_dictionary_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/common/lua_parameter_dictionary_test_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/common/lua_parameter_dictionary_test_helpers.h -------------------------------------------------------------------------------- /cartographer/cartographer/common/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/common/math.h -------------------------------------------------------------------------------- /cartographer/cartographer/common/math_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/common/math_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/common/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/common/port.h -------------------------------------------------------------------------------- /cartographer/cartographer/common/proto/ceres_solver_options.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/common/proto/ceres_solver_options.proto -------------------------------------------------------------------------------- /cartographer/cartographer/common/rate_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/common/rate_timer.h -------------------------------------------------------------------------------- /cartographer/cartographer/common/rate_timer_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/common/rate_timer_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/common/task.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/common/task.cc -------------------------------------------------------------------------------- /cartographer/cartographer/common/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/common/task.h -------------------------------------------------------------------------------- /cartographer/cartographer/common/task_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/common/task_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/common/thread_pool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/common/thread_pool.cc -------------------------------------------------------------------------------- /cartographer/cartographer/common/thread_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/common/thread_pool.h -------------------------------------------------------------------------------- /cartographer/cartographer/common/thread_pool_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/common/thread_pool_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/common/time.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/common/time.cc -------------------------------------------------------------------------------- /cartographer/cartographer/common/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/common/time.h -------------------------------------------------------------------------------- /cartographer/cartographer/common/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/common/utils.h -------------------------------------------------------------------------------- /cartographer/cartographer/ground_truth/autogenerate_ground_truth.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/ground_truth/autogenerate_ground_truth.cc -------------------------------------------------------------------------------- /cartographer/cartographer/ground_truth/autogenerate_ground_truth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/ground_truth/autogenerate_ground_truth.h -------------------------------------------------------------------------------- /cartographer/cartographer/ground_truth/autogenerate_ground_truth_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/ground_truth/autogenerate_ground_truth_main.cc -------------------------------------------------------------------------------- /cartographer/cartographer/ground_truth/compute_relations_metrics_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/ground_truth/compute_relations_metrics_main.cc -------------------------------------------------------------------------------- /cartographer/cartographer/ground_truth/proto/relations.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/ground_truth/proto/relations.proto -------------------------------------------------------------------------------- /cartographer/cartographer/ground_truth/relations_text_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/ground_truth/relations_text_file.cc -------------------------------------------------------------------------------- /cartographer/cartographer/ground_truth/relations_text_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/ground_truth/relations_text_file.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/color.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/color.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/color.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/coloring_points_processor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/coloring_points_processor.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/coloring_points_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/coloring_points_processor.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/counting_points_processor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/counting_points_processor.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/counting_points_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/counting_points_processor.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/draw_trajectories.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/draw_trajectories.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/draw_trajectories.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/draw_trajectories.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/fake_file_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/fake_file_writer.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/fake_file_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/fake_file_writer.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/fake_file_writer_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/fake_file_writer_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/file_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/file_writer.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/file_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/file_writer.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/fixed_ratio_sampling_points_processor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/fixed_ratio_sampling_points_processor.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/fixed_ratio_sampling_points_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/fixed_ratio_sampling_points_processor.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/frame_id_filtering_points_processor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/frame_id_filtering_points_processor.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/frame_id_filtering_points_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/frame_id_filtering_points_processor.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/hybrid_grid_points_processor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/hybrid_grid_points_processor.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/hybrid_grid_points_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/hybrid_grid_points_processor.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/image.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/image.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/image.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/intensity_to_color_points_processor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/intensity_to_color_points_processor.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/intensity_to_color_points_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/intensity_to_color_points_processor.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/internal/in_memory_proto_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/internal/in_memory_proto_stream.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/internal/in_memory_proto_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/internal/in_memory_proto_stream.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/internal/in_memory_proto_stream_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/internal/in_memory_proto_stream_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/internal/mapping_state_serialization.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/internal/mapping_state_serialization.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/internal/mapping_state_serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/internal/mapping_state_serialization.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/internal/pbstream_info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/internal/pbstream_info.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/internal/pbstream_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/internal/pbstream_info.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/internal/pbstream_migrate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/internal/pbstream_migrate.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/internal/pbstream_migrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/internal/pbstream_migrate.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/min_max_range_filtering_points_processor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/min_max_range_filtering_points_processor.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/min_max_range_filtering_points_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/min_max_range_filtering_points_processor.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/null_points_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/null_points_processor.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/outlier_removing_points_processor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/outlier_removing_points_processor.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/outlier_removing_points_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/outlier_removing_points_processor.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/pbstream_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/pbstream_main.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/pcd_writing_points_processor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/pcd_writing_points_processor.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/pcd_writing_points_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/pcd_writing_points_processor.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/ply_writing_points_processor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/ply_writing_points_processor.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/ply_writing_points_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/ply_writing_points_processor.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/points_batch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/points_batch.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/points_batch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/points_batch.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/points_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/points_processor.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/points_processor_pipeline_builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/points_processor_pipeline_builder.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/points_processor_pipeline_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/points_processor_pipeline_builder.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/points_processor_pipeline_builder_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/points_processor_pipeline_builder_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/probability_grid_points_processor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/probability_grid_points_processor.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/probability_grid_points_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/probability_grid_points_processor.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/probability_grid_points_processor_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/probability_grid_points_processor_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/proto_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/proto_stream.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/proto_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/proto_stream.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/proto_stream_deserializer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/proto_stream_deserializer.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/proto_stream_deserializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/proto_stream_deserializer.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/proto_stream_deserializer_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/proto_stream_deserializer_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/proto_stream_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/proto_stream_interface.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/proto_stream_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/proto_stream_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/serialization_format_migration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/serialization_format_migration.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/serialization_format_migration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/serialization_format_migration.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/serialization_format_migration_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/serialization_format_migration_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/submap_painter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/submap_painter.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/submap_painter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/submap_painter.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/testing/test_helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/testing/test_helpers.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/testing/test_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/testing/test_helpers.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/xray_points_processor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/xray_points_processor.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/xray_points_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/xray_points_processor.h -------------------------------------------------------------------------------- /cartographer/cartographer/io/xyz_writing_points_processor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/xyz_writing_points_processor.cc -------------------------------------------------------------------------------- /cartographer/cartographer/io/xyz_writing_points_processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/io/xyz_writing_points_processor.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/2d/grid_2d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/2d/grid_2d.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/2d/grid_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/2d/grid_2d.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/2d/map_limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/2d/map_limits.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/2d/map_limits_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/2d/map_limits_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/2d/probability_grid.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/2d/probability_grid.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/2d/probability_grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/2d/probability_grid.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/2d/probability_grid_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/2d/probability_grid_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/2d/range_data_inserter_2d_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/2d/range_data_inserter_2d_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/2d/submap_2d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/2d/submap_2d.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/2d/submap_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/2d/submap_2d.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/2d/submap_2d_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/2d/submap_2d_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/2d/tsd_value_converter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/2d/tsd_value_converter.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/2d/tsd_value_converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/2d/tsd_value_converter.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/2d/tsd_value_converter_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/2d/tsd_value_converter_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/2d/tsdf_2d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/2d/tsdf_2d.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/2d/tsdf_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/2d/tsdf_2d.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/2d/tsdf_2d_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/2d/tsdf_2d_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/2d/tsdf_range_data_inserter_2d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/2d/tsdf_range_data_inserter_2d.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/2d/tsdf_range_data_inserter_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/2d/tsdf_range_data_inserter_2d.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/2d/tsdf_range_data_inserter_2d_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/2d/tsdf_range_data_inserter_2d_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/2d/xy_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/2d/xy_index.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/2d/xy_index_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/2d/xy_index_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/3d/hybrid_grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/3d/hybrid_grid.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/3d/hybrid_grid_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/3d/hybrid_grid_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/3d/range_data_inserter_3d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/3d/range_data_inserter_3d.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/3d/range_data_inserter_3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/3d/range_data_inserter_3d.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/3d/range_data_inserter_3d_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/3d/range_data_inserter_3d_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/3d/submap_3d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/3d/submap_3d.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/3d/submap_3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/3d/submap_3d.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/3d/submap_3d_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/3d/submap_3d_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/detect_floors.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/detect_floors.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/detect_floors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/detect_floors.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/grid_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/grid_interface.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/id.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/id_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/id_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/imu_tracker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/imu_tracker.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/imu_tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/imu_tracker.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/imu_tracker_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/imu_tracker_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/2d/local_slam_result_2d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/2d/local_slam_result_2d.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/2d/local_slam_result_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/2d/local_slam_result_2d.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/2d/local_trajectory_builder_2d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/2d/local_trajectory_builder_2d.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/2d/local_trajectory_builder_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/2d/local_trajectory_builder_2d.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/2d/normal_estimation_2d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/2d/normal_estimation_2d.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/2d/normal_estimation_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/2d/normal_estimation_2d.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/2d/normal_estimation_2d_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/2d/normal_estimation_2d_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/2d/pose_graph_2d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/2d/pose_graph_2d.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/2d/pose_graph_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/2d/pose_graph_2d.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/2d/pose_graph_2d_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/2d/pose_graph_2d_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/2d/ray_to_pixel_mask.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/2d/ray_to_pixel_mask.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/2d/ray_to_pixel_mask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/2d/ray_to_pixel_mask.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/2d/ray_to_pixel_mask_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/2d/ray_to_pixel_mask_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/3d/imu_integration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/3d/imu_integration.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/3d/local_slam_result_3d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/3d/local_slam_result_3d.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/3d/local_slam_result_3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/3d/local_slam_result_3d.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/3d/local_trajectory_builder_3d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/3d/local_trajectory_builder_3d.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/3d/local_trajectory_builder_3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/3d/local_trajectory_builder_3d.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/3d/pose_graph_3d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/3d/pose_graph_3d.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/3d/pose_graph_3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/3d/pose_graph_3d.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/3d/pose_graph_3d_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/3d/pose_graph_3d_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/3d/rotation_parameterization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/3d/rotation_parameterization.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/collated_trajectory_builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/collated_trajectory_builder.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/collated_trajectory_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/collated_trajectory_builder.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/connected_components.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/connected_components.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/connected_components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/connected_components.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/connected_components_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/connected_components_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/constraints/constraint_builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/constraints/constraint_builder.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/constraints/constraint_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/constraints/constraint_builder.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/global_trajectory_builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/global_trajectory_builder.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/global_trajectory_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/global_trajectory_builder.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/motion_filter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/motion_filter.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/motion_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/motion_filter.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/motion_filter_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/motion_filter_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/optimization/ceres_pose.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/optimization/ceres_pose.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/optimization/ceres_pose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/optimization/ceres_pose.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/range_data_collator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/range_data_collator.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/range_data_collator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/range_data_collator.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/range_data_collator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/range_data_collator_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/submap_controller.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/submap_controller.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/submap_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/submap_controller.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/testing/fake_trimmable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/testing/fake_trimmable.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/testing/mock_map_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/testing/mock_map_builder.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/testing/mock_pose_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/testing/mock_pose_graph.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/testing/mock_trajectory_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/testing/mock_trajectory_builder.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/testing/test_helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/testing/test_helpers.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/testing/test_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/testing/test_helpers.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/trajectory_connectivity_state.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/trajectory_connectivity_state.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/trajectory_connectivity_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/trajectory_connectivity_state.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/internal/work_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/internal/work_queue.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/local_slam_result_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/local_slam_result_data.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/map_builder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/map_builder.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/map_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/map_builder.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/map_builder_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/map_builder_interface.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/map_builder_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/map_builder_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/pose_extrapolator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/pose_extrapolator.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/pose_extrapolator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/pose_extrapolator.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/pose_extrapolator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/pose_extrapolator_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/pose_graph.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/pose_graph.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/pose_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/pose_graph.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/pose_graph_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/pose_graph_data.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/pose_graph_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/pose_graph_interface.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/pose_graph_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/pose_graph_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/pose_graph_trimmer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/pose_graph_trimmer.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/pose_graph_trimmer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/pose_graph_trimmer.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/pose_graph_trimmer_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/pose_graph_trimmer_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/probability_values.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/probability_values.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/probability_values.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/probability_values.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/probability_values_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/probability_values_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/proto/2d/cell_limits.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/proto/2d/cell_limits.proto -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/proto/2d/grid_2d.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/proto/2d/grid_2d.proto -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/proto/2d/grid_2d_options.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/proto/2d/grid_2d_options.proto -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/proto/2d/map_limits.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/proto/2d/map_limits.proto -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/proto/2d/normal_estimation_options_2d.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/proto/2d/normal_estimation_options_2d.proto -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/proto/2d/probability_grid.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/proto/2d/probability_grid.proto -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/proto/2d/submaps_options_2d.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/proto/2d/submaps_options_2d.proto -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/proto/2d/tsdf_2d.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/proto/2d/tsdf_2d.proto -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/proto/3d/hybrid_grid.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/proto/3d/hybrid_grid.proto -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/proto/3d/submaps_options_3d.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/proto/3d/submaps_options_3d.proto -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/proto/connected_components.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/proto/connected_components.proto -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/proto/internal/legacy_serialized_data.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/proto/internal/legacy_serialized_data.proto -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/proto/internal/legacy_submap.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/proto/internal/legacy_submap.proto -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/proto/map_builder_options.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/proto/map_builder_options.proto -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/proto/motion_filter_options.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/proto/motion_filter_options.proto -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/proto/pose_graph.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/proto/pose_graph.proto -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/proto/pose_graph_options.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/proto/pose_graph_options.proto -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/proto/range_data_inserter_options.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/proto/range_data_inserter_options.proto -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/proto/serialization.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/proto/serialization.proto -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/proto/submap.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/proto/submap.proto -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/proto/submap_visualization.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/proto/submap_visualization.proto -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/proto/trajectory.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/proto/trajectory.proto -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/proto/trajectory_builder_options.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/proto/trajectory_builder_options.proto -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/proto/trajectory_node_data.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/proto/trajectory_node_data.proto -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/range_data_inserter_interface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/range_data_inserter_interface.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/range_data_inserter_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/range_data_inserter_interface.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/submaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/submaps.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/submaps_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/submaps_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/trajectory_builder_interface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/trajectory_builder_interface.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/trajectory_builder_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/trajectory_builder_interface.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/trajectory_node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/trajectory_node.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/trajectory_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/trajectory_node.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/trajectory_node_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/trajectory_node_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/value_conversion_tables.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/value_conversion_tables.cc -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/value_conversion_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/value_conversion_tables.h -------------------------------------------------------------------------------- /cartographer/cartographer/mapping/value_conversion_tables_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/mapping/value_conversion_tables_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/metrics/counter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/metrics/counter.cc -------------------------------------------------------------------------------- /cartographer/cartographer/metrics/counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/metrics/counter.h -------------------------------------------------------------------------------- /cartographer/cartographer/metrics/family_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/metrics/family_factory.h -------------------------------------------------------------------------------- /cartographer/cartographer/metrics/gauge.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/metrics/gauge.cc -------------------------------------------------------------------------------- /cartographer/cartographer/metrics/gauge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/metrics/gauge.h -------------------------------------------------------------------------------- /cartographer/cartographer/metrics/histogram.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/metrics/histogram.cc -------------------------------------------------------------------------------- /cartographer/cartographer/metrics/histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/metrics/histogram.h -------------------------------------------------------------------------------- /cartographer/cartographer/metrics/register.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/metrics/register.cc -------------------------------------------------------------------------------- /cartographer/cartographer/metrics/register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/metrics/register.h -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/constraint/acceleration_constraint_3d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/constraint/acceleration_constraint_3d.cc -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/constraint/acceleration_constraint_3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/constraint/acceleration_constraint_3d.h -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/constraint/constraint.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/constraint/constraint.cc -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/constraint/constraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/constraint/constraint.h -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/constraint/constraint_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/constraint/constraint_utils.cc -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/constraint/constraint_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/constraint/constraint_utils.h -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/constraint/loss_function/loss_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/constraint/loss_function/loss_function.h -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/constraint/relative_pose_constraint_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/constraint/relative_pose_constraint_2d.h -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/constraint/relative_pose_constraint_3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/constraint/relative_pose_constraint_3d.h -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/constraint/rotation_constraint_3d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/constraint/rotation_constraint_3d.cc -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/constraint/rotation_constraint_3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/constraint/rotation_constraint_3d.h -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/node/imu_calibration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/node/imu_calibration.cc -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/node/imu_calibration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/node/imu_calibration.h -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/node/imu_calibration_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/node/imu_calibration_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/node/node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/node/node.cc -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/node/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/node/node.h -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/node/node_id.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/node/node_id.cc -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/node/node_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/node/node_id.h -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/node/node_id_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/node/node_id_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/node/nodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/node/nodes.h -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/node/parameterization/parameterization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/node/parameterization/parameterization.h -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/node/pose_2d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/node/pose_2d.cc -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/node/pose_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/node/pose_2d.h -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/node/pose_2d_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/node/pose_2d_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/node/pose_3d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/node/pose_3d.cc -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/node/pose_3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/node/pose_3d.h -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/node/pose_3d_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/node/pose_3d_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/pose_graph_controller.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/pose_graph_controller.cc -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/pose_graph_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/pose_graph_controller.h -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/pose_graph_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/pose_graph_data.cc -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/pose_graph_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/pose_graph_data.h -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/proto/constraint.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/proto/constraint.proto -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/proto/cost_function.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/proto/cost_function.proto -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/proto/loss_function.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/proto/loss_function.proto -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/proto/node.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/proto/node.proto -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/proto/pose_graph_data.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/proto/pose_graph_data.proto -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/proto/solver_config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/proto/solver_config.proto -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/solver/ceres_solver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/solver/ceres_solver.cc -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/solver/ceres_solver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/solver/ceres_solver.h -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/solver/ceres_solver_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/solver/ceres_solver_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/pose_graph/solver/solver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/pose_graph/solver/solver.h -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/collator_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/collator_interface.h -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/compressed_point_cloud.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/compressed_point_cloud.cc -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/compressed_point_cloud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/compressed_point_cloud.h -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/compressed_point_cloud_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/compressed_point_cloud_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/data.h -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/fixed_frame_pose_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/fixed_frame_pose_data.cc -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/fixed_frame_pose_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/fixed_frame_pose_data.h -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/imu_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/imu_data.cc -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/imu_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/imu_data.h -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/internal/collator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/internal/collator.cc -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/internal/collator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/internal/collator.h -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/internal/collator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/internal/collator_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/internal/dispatchable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/internal/dispatchable.h -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/internal/ordered_multi_queue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/internal/ordered_multi_queue.cc -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/internal/ordered_multi_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/internal/ordered_multi_queue.h -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/internal/ordered_multi_queue_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/internal/ordered_multi_queue_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/internal/test_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/internal/test_helpers.h -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/internal/trajectory_collator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/internal/trajectory_collator.cc -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/internal/trajectory_collator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/internal/trajectory_collator.h -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/internal/trajectory_collator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/internal/trajectory_collator_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/internal/voxel_filter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/internal/voxel_filter.cc -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/internal/voxel_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/internal/voxel_filter.h -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/internal/voxel_filter_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/internal/voxel_filter_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/landmark_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/landmark_data.cc -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/landmark_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/landmark_data.h -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/landmark_data_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/landmark_data_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/map_by_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/map_by_time.h -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/map_by_time_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/map_by_time_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/odometry_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/odometry_data.cc -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/odometry_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/odometry_data.h -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/point_cloud.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/point_cloud.cc -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/point_cloud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/point_cloud.h -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/point_cloud_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/point_cloud_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/proto/adaptive_voxel_filter_options.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/proto/adaptive_voxel_filter_options.proto -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/proto/sensor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/proto/sensor.proto -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/range_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/range_data.cc -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/range_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/range_data.h -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/range_data_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/range_data_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/rangefinder_point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/rangefinder_point.h -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/timed_point_cloud_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/timed_point_cloud_data.cc -------------------------------------------------------------------------------- /cartographer/cartographer/sensor/timed_point_cloud_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/sensor/timed_point_cloud_data.h -------------------------------------------------------------------------------- /cartographer/cartographer/testing/test_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/testing/test_helpers.h -------------------------------------------------------------------------------- /cartographer/cartographer/transform/proto/timestamped_transform.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/transform/proto/timestamped_transform.proto -------------------------------------------------------------------------------- /cartographer/cartographer/transform/proto/transform.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/transform/proto/transform.proto -------------------------------------------------------------------------------- /cartographer/cartographer/transform/rigid_transform.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/transform/rigid_transform.cc -------------------------------------------------------------------------------- /cartographer/cartographer/transform/rigid_transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/transform/rigid_transform.h -------------------------------------------------------------------------------- /cartographer/cartographer/transform/rigid_transform_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/transform/rigid_transform_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/transform/rigid_transform_test_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/transform/rigid_transform_test_helpers.h -------------------------------------------------------------------------------- /cartographer/cartographer/transform/timestamped_transform.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/transform/timestamped_transform.cc -------------------------------------------------------------------------------- /cartographer/cartographer/transform/timestamped_transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/transform/timestamped_transform.h -------------------------------------------------------------------------------- /cartographer/cartographer/transform/timestamped_transform_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/transform/timestamped_transform_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/transform/transform.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/transform/transform.cc -------------------------------------------------------------------------------- /cartographer/cartographer/transform/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/transform/transform.h -------------------------------------------------------------------------------- /cartographer/cartographer/transform/transform_interpolation_buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/transform/transform_interpolation_buffer.cc -------------------------------------------------------------------------------- /cartographer/cartographer/transform/transform_interpolation_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/transform/transform_interpolation_buffer.h -------------------------------------------------------------------------------- /cartographer/cartographer/transform/transform_interpolation_buffer_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/transform/transform_interpolation_buffer_test.cc -------------------------------------------------------------------------------- /cartographer/cartographer/transform/transform_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cartographer/transform/transform_test.cc -------------------------------------------------------------------------------- /cartographer/cmake/functions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cmake/functions.cmake -------------------------------------------------------------------------------- /cartographer/cmake/modules/FindAbseil.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cmake/modules/FindAbseil.cmake -------------------------------------------------------------------------------- /cartographer/cmake/modules/FindEigen3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cmake/modules/FindEigen3.cmake -------------------------------------------------------------------------------- /cartographer/cmake/modules/FindGMock.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cmake/modules/FindGMock.cmake -------------------------------------------------------------------------------- /cartographer/cmake/modules/FindLuaGoogle.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cmake/modules/FindLuaGoogle.cmake -------------------------------------------------------------------------------- /cartographer/cmake/modules/FindSphinx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/cmake/modules/FindSphinx.cmake -------------------------------------------------------------------------------- /cartographer/configuration_files/map_builder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/configuration_files/map_builder.lua -------------------------------------------------------------------------------- /cartographer/configuration_files/map_builder_server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/configuration_files/map_builder_server.lua -------------------------------------------------------------------------------- /cartographer/configuration_files/pose_graph.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/configuration_files/pose_graph.lua -------------------------------------------------------------------------------- /cartographer/configuration_files/trajectory_builder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/configuration_files/trajectory_builder.lua -------------------------------------------------------------------------------- /cartographer/configuration_files/trajectory_builder_2d.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/configuration_files/trajectory_builder_2d.lua -------------------------------------------------------------------------------- /cartographer/configuration_files/trajectory_builder_3d.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/configuration_files/trajectory_builder_3d.lua -------------------------------------------------------------------------------- /cartographer/docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/docs/CMakeLists.txt -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_1024dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/docs/assets/logo_1024dp.png -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_128dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/docs/assets/logo_128dp.png -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_16dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/docs/assets/logo_16dp.png -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_16dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/docs/assets/logo_16dp.svg -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_192dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/docs/assets/logo_192dp.png -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/docs/assets/logo_24dp.png -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_24dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/docs/assets/logo_24dp.svg -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_32dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/docs/assets/logo_32dp.png -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_32dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/docs/assets/logo_32dp.svg -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/docs/assets/logo_36dp.png -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_36dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/docs/assets/logo_36dp.svg -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/docs/assets/logo_48dp.png -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_48dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/docs/assets/logo_48dp.svg -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_512dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/docs/assets/logo_512dp.png -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_512dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/docs/assets/logo_512dp.svg -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_64dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/docs/assets/logo_64dp.png -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_64dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/docs/assets/logo_64dp.svg -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_72dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/docs/assets/logo_72dp.png -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_96dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/docs/assets/logo_96dp.png -------------------------------------------------------------------------------- /cartographer/docs/assets/logo_96dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/docs/assets/logo_96dp.svg -------------------------------------------------------------------------------- /cartographer/docs/assets/t_shirt/logo_cartographer.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/docs/assets/t_shirt/logo_cartographer.ai -------------------------------------------------------------------------------- /cartographer/docs/assets/t_shirt/logo_cartographer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/docs/assets/t_shirt/logo_cartographer.svg -------------------------------------------------------------------------------- /cartographer/docs/assets/t_shirt/logo_cartographer_512dp_shaded.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/docs/assets/t_shirt/logo_cartographer_512dp_shaded.svg -------------------------------------------------------------------------------- /cartographer/docs/assets/t_shirt/pantone_lookup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/docs/assets/t_shirt/pantone_lookup.png -------------------------------------------------------------------------------- /cartographer/docs/assets/t_shirt/pantone_lookup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/docs/assets/t_shirt/pantone_lookup.txt -------------------------------------------------------------------------------- /cartographer/docs/source/autogenerate_groundtruth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/docs/source/autogenerate_groundtruth.png -------------------------------------------------------------------------------- /cartographer/docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/docs/source/conf.py -------------------------------------------------------------------------------- /cartographer/docs/source/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/docs/source/configuration.rst -------------------------------------------------------------------------------- /cartographer/docs/source/cost_functions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/docs/source/cost_functions.rst -------------------------------------------------------------------------------- /cartographer/docs/source/evaluation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/docs/source/evaluation.rst -------------------------------------------------------------------------------- /cartographer/docs/source/high_level_system_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/docs/source/high_level_system_overview.png -------------------------------------------------------------------------------- /cartographer/docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/docs/source/index.rst -------------------------------------------------------------------------------- /cartographer/docs/source/pbstream_migration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/docs/source/pbstream_migration.rst -------------------------------------------------------------------------------- /cartographer/docs/source/terminology.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/docs/source/terminology.rst -------------------------------------------------------------------------------- /cartographer/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/package.xml -------------------------------------------------------------------------------- /cartographer/scripts/build_test_asan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/scripts/build_test_asan.sh -------------------------------------------------------------------------------- /cartographer/scripts/ctest_to_junit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/scripts/ctest_to_junit.py -------------------------------------------------------------------------------- /cartographer/scripts/ctest_to_junit.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/scripts/ctest_to_junit.xsl -------------------------------------------------------------------------------- /cartographer/scripts/install_async_grpc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/scripts/install_async_grpc.sh -------------------------------------------------------------------------------- /cartographer/scripts/install_cartographer_bazel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/scripts/install_cartographer_bazel.sh -------------------------------------------------------------------------------- /cartographer/scripts/install_cartographer_cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/scripts/install_cartographer_cmake.sh -------------------------------------------------------------------------------- /cartographer/scripts/install_cartographer_cmake_with_grpc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/scripts/install_cartographer_cmake_with_grpc.sh -------------------------------------------------------------------------------- /cartographer/scripts/install_ceres.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/scripts/install_ceres.sh -------------------------------------------------------------------------------- /cartographer/scripts/install_debs_bazel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/scripts/install_debs_bazel.sh -------------------------------------------------------------------------------- /cartographer/scripts/install_debs_cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/scripts/install_debs_cmake.sh -------------------------------------------------------------------------------- /cartographer/scripts/install_grpc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/scripts/install_grpc.sh -------------------------------------------------------------------------------- /cartographer/scripts/install_prometheus_cpp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/scripts/install_prometheus_cpp.sh -------------------------------------------------------------------------------- /cartographer/scripts/install_proto3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/scripts/install_proto3.sh -------------------------------------------------------------------------------- /cartographer/scripts/load_docker_cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/scripts/load_docker_cache.sh -------------------------------------------------------------------------------- /cartographer/scripts/remove_mingw_cygwin_from_path.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/scripts/remove_mingw_cygwin_from_path.bat -------------------------------------------------------------------------------- /cartographer/scripts/save_docker_cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/scripts/save_docker_cache.sh -------------------------------------------------------------------------------- /cartographer/scripts/update_configuration_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer/scripts/update_configuration_doc.py -------------------------------------------------------------------------------- /cartographer_ros/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/.dockerignore -------------------------------------------------------------------------------- /cartographer_ros/.github/ISSUE_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/.github/ISSUE_TEMPLATE -------------------------------------------------------------------------------- /cartographer_ros/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/.travis.yml -------------------------------------------------------------------------------- /cartographer_ros/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/AUTHORS -------------------------------------------------------------------------------- /cartographer_ros/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/CONTRIBUTING.md -------------------------------------------------------------------------------- /cartographer_ros/Dockerfile.base.melodic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/Dockerfile.base.melodic -------------------------------------------------------------------------------- /cartographer_ros/Dockerfile.indigo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/Dockerfile.indigo -------------------------------------------------------------------------------- /cartographer_ros/Dockerfile.kinetic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/Dockerfile.kinetic -------------------------------------------------------------------------------- /cartographer_ros/Dockerfile.lunar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/Dockerfile.lunar -------------------------------------------------------------------------------- /cartographer_ros/Dockerfile.melodic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/Dockerfile.melodic -------------------------------------------------------------------------------- /cartographer_ros/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/LICENSE -------------------------------------------------------------------------------- /cartographer_ros/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/README.rst -------------------------------------------------------------------------------- /cartographer_ros/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/azure-pipelines.yml -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros.rosinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros.rosinstall -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/CHANGELOG.rst -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/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/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/CMakeLists.txt -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/assets_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/assets_writer.cc -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/assets_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/assets_writer.h -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/assets_writer_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/assets_writer_main.cc -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/frontier_detection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/frontier_detection.cc -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/frontier_detection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/frontier_detection.h -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/map_builder_bridge.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/map_builder_bridge.cc -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/map_builder_bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/map_builder_bridge.h -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/metrics/family_factory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/metrics/family_factory.cc -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/metrics/family_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/metrics/family_factory.h -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/metrics/internal/counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/metrics/internal/counter.h -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/metrics/internal/family.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/metrics/internal/family.cc -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/metrics/internal/family.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/metrics/internal/family.h -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/metrics/internal/gauge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/metrics/internal/gauge.h -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/msg_conversion.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/msg_conversion.cc -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/msg_conversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/msg_conversion.h -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/msg_conversion_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/msg_conversion_test.cc -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/node.cc -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/node.h -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/node_constants.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/node_constants.cc -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/node_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/node_constants.h -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/node_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/node_main.cc -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/node_options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/node_options.cc -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/node_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/node_options.h -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/offline_node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/offline_node.cc -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/offline_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/offline_node.h -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/offline_node_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/offline_node_main.cc -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/playable_bag.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/playable_bag.cc -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/playable_bag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/playable_bag.h -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/ros_log_sink.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/ros_log_sink.cc -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/ros_log_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/ros_log_sink.h -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/ros_map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/ros_map.cc -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/ros_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/ros_map.h -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/rosbag_validate_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/rosbag_validate_main.cc -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/sensor_bridge.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/sensor_bridge.cc -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/sensor_bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/sensor_bridge.h -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/start_trajectory_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/start_trajectory_main.cc -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/submap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/submap.cc -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/submap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/submap.h -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/tf_bridge.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/tf_bridge.cc -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/tf_bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/tf_bridge.h -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/time_conversion.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/time_conversion.cc -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/time_conversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/time_conversion.h -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/time_conversion_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/time_conversion_test.cc -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/trajectory_options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/trajectory_options.cc -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/trajectory_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/trajectory_options.h -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/urdf_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/urdf_reader.cc -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/cartographer_ros/urdf_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/cartographer_ros/urdf_reader.h -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/configuration_files/backpack_2d.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/configuration_files/backpack_2d.lua -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/configuration_files/backpack_2d_server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/configuration_files/backpack_2d_server.lua -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/configuration_files/backpack_3d.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/configuration_files/backpack_3d.lua -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/configuration_files/demo_2d.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/configuration_files/demo_2d.rviz -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/configuration_files/demo_3d.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/configuration_files/demo_3d.rviz -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/configuration_files/pr2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/configuration_files/pr2.lua -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/configuration_files/revo_lds.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/configuration_files/revo_lds.lua -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/configuration_files/taurob_tracker.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/configuration_files/taurob_tracker.lua -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/configuration_files/transform.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/configuration_files/transform.lua -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/launch/assets_writer_backpack_2d.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/launch/assets_writer_backpack_2d.launch -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/launch/assets_writer_backpack_3d.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/launch/assets_writer_backpack_3d.launch -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/launch/assets_writer_ros_map.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/launch/assets_writer_ros_map.launch -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/launch/backpack_2d.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/launch/backpack_2d.launch -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/launch/backpack_3d.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/launch/backpack_3d.launch -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/launch/demo_backpack_2d.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/launch/demo_backpack_2d.launch -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/launch/demo_backpack_3d.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/launch/demo_backpack_3d.launch -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/launch/demo_pr2.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/launch/demo_pr2.launch -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/launch/demo_revo_lds.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/launch/demo_revo_lds.launch -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/launch/demo_taurob_tracker.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/launch/demo_taurob_tracker.launch -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/launch/grpc_demo_backpack_2d.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/launch/grpc_demo_backpack_2d.launch -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/launch/offline_backpack_2d.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/launch/offline_backpack_2d.launch -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/launch/offline_backpack_3d.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/launch/offline_backpack_3d.launch -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/launch/offline_node.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/launch/offline_node.launch -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/launch/taurob_tracker.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/launch/taurob_tracker.launch -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/launch/visualize_pbstream.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/launch/visualize_pbstream.launch -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/package.xml -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/scripts/cartographer_grpc_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/scripts/cartographer_grpc_server.sh -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/scripts/remove_leading_slashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/scripts/remove_leading_slashes.py -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/scripts/tf_remove_frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/scripts/tf_remove_frames.py -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/urdf/backpack_2d.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/urdf/backpack_2d.urdf -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros/urdf/backpack_3d.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros/urdf/backpack_3d.urdf -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros_msgs/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros_msgs/CHANGELOG.rst -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros_msgs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros_msgs/CMakeLists.txt -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros_msgs/msg/BagfileProgress.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros_msgs/msg/BagfileProgress.msg -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros_msgs/msg/HistogramBucket.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros_msgs/msg/HistogramBucket.msg -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros_msgs/msg/LandmarkEntry.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros_msgs/msg/LandmarkEntry.msg -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros_msgs/msg/LandmarkList.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros_msgs/msg/LandmarkList.msg -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros_msgs/msg/Metric.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros_msgs/msg/Metric.msg -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros_msgs/msg/MetricFamily.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros_msgs/msg/MetricFamily.msg -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros_msgs/msg/MetricLabel.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros_msgs/msg/MetricLabel.msg -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros_msgs/msg/SensorTopics.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros_msgs/msg/SensorTopics.msg -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros_msgs/msg/StatusCode.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros_msgs/msg/StatusCode.msg -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros_msgs/msg/StatusResponse.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros_msgs/msg/StatusResponse.msg -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros_msgs/msg/SubmapEntry.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros_msgs/msg/SubmapEntry.msg -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros_msgs/msg/SubmapList.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros_msgs/msg/SubmapList.msg -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros_msgs/msg/SubmapTexture.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros_msgs/msg/SubmapTexture.msg -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros_msgs/msg/TrajectoryOptions.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros_msgs/msg/TrajectoryOptions.msg -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros_msgs/msg/TrajectoryStates.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros_msgs/msg/TrajectoryStates.msg -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros_msgs/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros_msgs/package.xml -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros_msgs/srv/FinishTrajectory.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros_msgs/srv/FinishTrajectory.srv -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros_msgs/srv/GetTrajectoryStates.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros_msgs/srv/GetTrajectoryStates.srv -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros_msgs/srv/ReadMetrics.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros_msgs/srv/ReadMetrics.srv -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros_msgs/srv/StartTrajectory.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros_msgs/srv/StartTrajectory.srv -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros_msgs/srv/SubmapQuery.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros_msgs/srv/SubmapQuery.srv -------------------------------------------------------------------------------- /cartographer_ros/cartographer_ros_msgs/srv/WriteState.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_ros_msgs/srv/WriteState.srv -------------------------------------------------------------------------------- /cartographer_ros/cartographer_rviz/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_rviz/CHANGELOG.rst -------------------------------------------------------------------------------- /cartographer_ros/cartographer_rviz/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/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/cartographer_rviz/drawable_submap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_rviz/cartographer_rviz/drawable_submap.cc -------------------------------------------------------------------------------- /cartographer_ros/cartographer_rviz/cartographer_rviz/drawable_submap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_rviz/cartographer_rviz/drawable_submap.h -------------------------------------------------------------------------------- /cartographer_ros/cartographer_rviz/cartographer_rviz/ogre_slice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_rviz/cartographer_rviz/ogre_slice.cc -------------------------------------------------------------------------------- /cartographer_ros/cartographer_rviz/cartographer_rviz/ogre_slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_rviz/cartographer_rviz/ogre_slice.h -------------------------------------------------------------------------------- /cartographer_ros/cartographer_rviz/cartographer_rviz/submaps_display.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_rviz/cartographer_rviz/submaps_display.cc -------------------------------------------------------------------------------- /cartographer_ros/cartographer_rviz/cartographer_rviz/submaps_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_rviz/cartographer_rviz/submaps_display.h -------------------------------------------------------------------------------- /cartographer_ros/cartographer_rviz/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_rviz/package.xml -------------------------------------------------------------------------------- /cartographer_ros/cartographer_rviz/rviz_plugin_description.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/cartographer_rviz/rviz_plugin_description.xml -------------------------------------------------------------------------------- /cartographer_ros/docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/docs/CMakeLists.txt -------------------------------------------------------------------------------- /cartographer_ros/docs/source/algo_walkthrough.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/docs/source/algo_walkthrough.rst -------------------------------------------------------------------------------- /cartographer_ros/docs/source/assets_writer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/docs/source/assets_writer.rst -------------------------------------------------------------------------------- /cartographer_ros/docs/source/compilation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/docs/source/compilation.rst -------------------------------------------------------------------------------- /cartographer_ros/docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/docs/source/conf.py -------------------------------------------------------------------------------- /cartographer_ros/docs/source/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/docs/source/configuration.rst -------------------------------------------------------------------------------- /cartographer_ros/docs/source/data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/docs/source/data.rst -------------------------------------------------------------------------------- /cartographer_ros/docs/source/demo_2d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/docs/source/demo_2d.gif -------------------------------------------------------------------------------- /cartographer_ros/docs/source/demos.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/docs/source/demos.rst -------------------------------------------------------------------------------- /cartographer_ros/docs/source/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/docs/source/faq.rst -------------------------------------------------------------------------------- /cartographer_ros/docs/source/frames_demo_2d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/docs/source/frames_demo_2d.jpg -------------------------------------------------------------------------------- /cartographer_ros/docs/source/getting_involved.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/docs/source/getting_involved.rst -------------------------------------------------------------------------------- /cartographer_ros/docs/source/going_further.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/docs/source/going_further.rst -------------------------------------------------------------------------------- /cartographer_ros/docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/docs/source/index.rst -------------------------------------------------------------------------------- /cartographer_ros/docs/source/nodes_graph_demo_2d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/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/cartographer_frontier_detection/HEAD/cartographer_ros/docs/source/point_cloud_viewer_demo_3d.jpg -------------------------------------------------------------------------------- /cartographer_ros/docs/source/ros_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/docs/source/ros_api.rst -------------------------------------------------------------------------------- /cartographer_ros/docs/source/tuning.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/docs/source/tuning.rst -------------------------------------------------------------------------------- /cartographer_ros/docs/source/your_bag.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/docs/source/your_bag.rst -------------------------------------------------------------------------------- /cartographer_ros/jenkins/Dockerfile.kinetic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/jenkins/Dockerfile.kinetic -------------------------------------------------------------------------------- /cartographer_ros/jenkins/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/jenkins/Jenkinsfile -------------------------------------------------------------------------------- /cartographer_ros/jenkins/jenkins-slave: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/jenkins/jenkins-slave -------------------------------------------------------------------------------- /cartographer_ros/jenkins/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/jenkins/worker.py -------------------------------------------------------------------------------- /cartographer_ros/scripts/catkin_test_results.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/scripts/catkin_test_results.sh -------------------------------------------------------------------------------- /cartographer_ros/scripts/check_access_token.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/scripts/check_access_token.sh -------------------------------------------------------------------------------- /cartographer_ros/scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/scripts/install.sh -------------------------------------------------------------------------------- /cartographer_ros/scripts/install_debs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/scripts/install_debs.sh -------------------------------------------------------------------------------- /cartographer_ros/scripts/load_docker_cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/scripts/load_docker_cache.sh -------------------------------------------------------------------------------- /cartographer_ros/scripts/prepare_catkin_workspace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/scripts/prepare_catkin_workspace.sh -------------------------------------------------------------------------------- /cartographer_ros/scripts/prepare_jenkins_catkin_workspace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/scripts/prepare_jenkins_catkin_workspace.sh -------------------------------------------------------------------------------- /cartographer_ros/scripts/ros_entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/scripts/ros_entrypoint.sh -------------------------------------------------------------------------------- /cartographer_ros/scripts/save_docker_cache.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/scripts/save_docker_cache.sh -------------------------------------------------------------------------------- /cartographer_ros/scripts/update_catkin_workspace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/cartographer_ros/scripts/update_catkin_workspace.sh -------------------------------------------------------------------------------- /fr079-dataset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/fr079-dataset/README.md -------------------------------------------------------------------------------- /fr079-dataset/fr079-original-uncorrected.bag.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/fr079-dataset/fr079-original-uncorrected.bag.gz -------------------------------------------------------------------------------- /fr079-dataset/fr079.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/fr079-dataset/fr079.lua -------------------------------------------------------------------------------- /fr079-dataset/fr079.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/fr079-dataset/fr079.rviz -------------------------------------------------------------------------------- /two-pioneers-p3dx-fer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/two-pioneers-p3dx-fer/README.md -------------------------------------------------------------------------------- /two-pioneers-p3dx-fer/two-pioneers-p3dx-fer.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/larics/cartographer_frontier_detection/HEAD/two-pioneers-p3dx-fer/two-pioneers-p3dx-fer.tar.xz --------------------------------------------------------------------------------