-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
67 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
cartographer/mapping/scan_matching/real_time_correlative_scan_matcher.cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#include "cartographer/mapping/scan_matching/real_time_correlative_scan_matcher.h" | ||
|
||
namespace cartographer { | ||
namespace mapping { | ||
namespace scan_matching { | ||
|
||
proto::RealTimeCorrelativeScanMatcherOptions | ||
CreateRealTimeCorrelativeScanMatcherOptions( | ||
common::LuaParameterDictionary* const parameter_dictionary) { | ||
proto::RealTimeCorrelativeScanMatcherOptions options; | ||
options.set_linear_search_window( | ||
parameter_dictionary->GetDouble("linear_search_window")); | ||
options.set_angular_search_window( | ||
parameter_dictionary->GetDouble("angular_search_window")); | ||
options.set_translation_delta_cost_weight( | ||
parameter_dictionary->GetDouble("translation_delta_cost_weight")); | ||
options.set_rotation_delta_cost_weight( | ||
parameter_dictionary->GetDouble("rotation_delta_cost_weight")); | ||
CHECK_GE(options.translation_delta_cost_weight(), 0.); | ||
CHECK_GE(options.rotation_delta_cost_weight(), 0.); | ||
return options; | ||
} | ||
|
||
} // namespace scan_matching | ||
} // namespace mapping | ||
} // namespace cartographer |
36 changes: 36 additions & 0 deletions
36
cartographer/mapping/scan_matching/real_time_correlative_scan_matcher.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
|
||
/* | ||
* Copyright 2018 The Cartographer Authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
#ifndef CARTOGRAPHER_MAPPING_SCAN_MATCHING_REAL_TIME_CORRELATIVE_SCAN_MATCHER_H_ | ||
#define CARTOGRAPHER_MAPPING_SCAN_MATCHING_REAL_TIME_CORRELATIVE_SCAN_MATCHER_H_ | ||
|
||
#include "cartographer/common/lua_parameter_dictionary.h" | ||
#include "cartographer/mapping/scan_matching/proto/real_time_correlative_scan_matcher_options.pb.h" | ||
|
||
namespace cartographer { | ||
namespace mapping { | ||
namespace scan_matching { | ||
|
||
proto::RealTimeCorrelativeScanMatcherOptions | ||
CreateRealTimeCorrelativeScanMatcherOptions( | ||
common::LuaParameterDictionary* const parameter_dictionary); | ||
|
||
} // namespace scan_matching | ||
} // namespace mapping | ||
} // namespace cartographer | ||
|
||
#endif // CARTOGRAPHER_MAPPING_SCAN_MATCHING_REAL_TIME_CORRELATIVE_SCAN_MATCHER_H_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters