You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I see that the occupancy_buffer comparison with clamp_min_log_ is done considering 3rd decimal precision.
for exmaple in FUEL/fuel_planner/plan_env/src/map_ros.cpp line no : 249
""if (map_->md_->occupancy_buffer_[map_->toAddress(x, y, z)] > map_->mp_->clamp_min_log_ - 1e-3)""
I want to understand the necessity for such precision comparison, if i remove (- 1e-3) from the the code. will it have any impact on the overall performance
The text was updated successfully, but these errors were encountered:
Hi, @ZbyLGsc
I see that the occupancy_buffer comparison with clamp_min_log_ is done considering 3rd decimal precision.
for exmaple in FUEL/fuel_planner/plan_env/src/map_ros.cpp line no : 249
""if (map_->md_->occupancy_buffer_[map_->toAddress(x, y, z)] > map_->mp_->clamp_min_log_ - 1e-3)""
I want to understand the necessity for such precision comparison, if i remove (- 1e-3) from the the code. will it have any impact on the overall performance
The text was updated successfully, but these errors were encountered: