Follow googlecartographer/cartographer#1164 (#877)

master
Christoph Schütte 2018-05-25 14:53:39 +02:00 committed by Wally B. Feed
parent 37b2d40bb7
commit 4ecf04b49f
2 changed files with 2 additions and 4 deletions

View File

@ -54,8 +54,7 @@ void Run() {
auto map_builder =
cartographer::common::make_unique<cartographer::mapping::MapBuilder>(
node_options.map_builder_options,
nullptr /* global_slam_result_callback*/);
node_options.map_builder_options);
Node node(node_options, std::move(map_builder), &tf_buffer);
if (!FLAGS_load_state_filename.empty()) {
node.LoadState(FLAGS_load_state_filename, FLAGS_load_frozen_state);

View File

@ -33,8 +33,7 @@ int main(int argc, char** argv) {
[](const ::cartographer::mapping::proto::MapBuilderOptions&
map_builder_options) {
return ::cartographer::common::make_unique<
::cartographer::mapping::MapBuilder>(
map_builder_options, nullptr /* global_slam_result_callback */);
::cartographer::mapping::MapBuilder>(map_builder_options);
};
cartographer_ros::RunOfflineNode(map_builder_factory);