/* * Copyright 2016 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. */ #include "cartographer/mapping_2d/range_data_inserter.h" #include #include "Eigen/Core" #include "Eigen/Geometry" #include "cartographer/mapping_2d/ray_casting.h" #include "cartographer/mapping_2d/xy_index.h" #include "glog/logging.h" namespace cartographer { namespace mapping_2d { proto::RangeDataInserterOptions CreateRangeDataInserterOptions( common::LuaParameterDictionary* const parameter_dictionary) { proto::RangeDataInserterOptions options; options.set_hit_probability( parameter_dictionary->GetDouble("hit_probability")); options.set_miss_probability( parameter_dictionary->GetDouble("miss_probability")); options.set_insert_free_space( parameter_dictionary->HasKey("insert_free_space") ? parameter_dictionary->GetBool("insert_free_space") : true); CHECK_GT(options.hit_probability(), 0.5); CHECK_LT(options.miss_probability(), 0.5); return options; } RangeDataInserter::RangeDataInserter( const proto::RangeDataInserterOptions& options) : options_(options), hit_table_(mapping::ComputeLookupTableToApplyOdds( mapping::Odds(options.hit_probability()))), miss_table_(mapping::ComputeLookupTableToApplyOdds( mapping::Odds(options.miss_probability()))) {} void RangeDataInserter::Insert(const sensor::RangeData& range_data, ProbabilityGrid* const probability_grid) const { // By not finishing the update after hits are inserted, we give hits priority // (i.e. no hits will be ignored because of a miss in the same cell). CastRays(range_data, hit_table_, miss_table_, options_.insert_free_space(), CHECK_NOTNULL(probability_grid)); probability_grid->FinishUpdate(); } } // namespace mapping_2d } // namespace cartographer