url-kaist / patchwork-plusplus

Patchwork++: Fast and robust ground segmentation method for 3D LiDAR scans. @ IROS'22
GNU General Public License v3.0
556 stars 89 forks source link

Regarding varying mean sensor height #51

Open arun-venkat-23 opened 3 weeks ago

arun-venkat-23 commented 3 weeks ago

Hey @seungjae24

While calculating the initial_seeds, I was wondering why does the mean height of points vary a lot. My sensor is mounted at around 1.7m from the ground but the mean height of points does go till 3.4m

LimHyungTae commented 3 weeks ago

How come??? Could you see the example please?

arun-venkat-23 commented 3 weeks ago

Since the plane fitting is done bin-wise, there are a few bins in which the mean height of points are at around ~3.4 (trees). Due the absence of ground points in the particular region, the algorithm during the initial seeds computation takes the mean height and tags all points below the mean as ground. This is an issue, do you think there is a workaround for this?

LimHyungTae commented 3 weeks ago

Then how about just applying the global z threshold before taking the point cloud as input? The points under the tree seem definite false positives, which can be easily filtered out.

arun-venkat-23 commented 3 weeks ago

This might work for a flat/planar ground surface. In case of slopes, this might start putting out issues