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 don't fully understand the question. Did you have a look at the OctoMap journal paper? It explains the raycasting and clearing behavior. Explicitly setting the free cells is needed for clearing obstacles.
if (this->computeRayKeys(origin, p, *keyray)){
#ifdef _OPENMP
#pragma omp critical (free_insert)
#endif
{
free_cells.insert(keyray->begin(), keyray->end());
}
}
for key in keyray, if octomap.(key) == false, why updateNode is neccessary. And in most cases, most free_cells in keyrays don't have voxel before
The text was updated successfully, but these errors were encountered: