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
if (p_sorted.points[i].z < lpr_height-TH_OUTLIER_) continue;
init_seeds.points.push_back(p_sorted.points[i]);
}
}
The processing above calculates the mean z in a tri-grid node and pick points whose z belong to [mean_z-TH_OUTLIER_, mean_z+TH_SEEDS_). This may include many points from obstacles. Why not pick Lowest Points?
The text was updated successfully, but these errors were encountered:
Not really understand the rule of picking ground seeds.
TRAVEL/include/travel/tgs.hpp
Lines 568 to 573 in ea9520a
The processing above calculates the mean z in a tri-grid node and pick points whose z belong to [mean_z-TH_OUTLIER_, mean_z+TH_SEEDS_). This may include many points from obstacles. Why not pick Lowest Points?
The text was updated successfully, but these errors were encountered: