Point cloud outlier removal¶
When collecting data from scanning devices, it happens that the point cloud contains noise and artifact that one would like to remove. This tutorial address the outlier removal features of Open3D.
Prepare input data¶
A point cloud is loaded and downsampled using voxel_downsample
.
[2]:
print("Load a ply point cloud, print it, and render it")
pcd = o3d.io.read_point_cloud("../../TestData/ICP/cloud_bin_2.pcd")
o3d.visualization.draw_geometries([pcd], zoom=0.3412,
front=[0.4257, -0.2125, -0.8795],
lookat=[2.6172, 2.0475, 1.532],
up=[-0.0694, -0.9768, 0.2024])
print("Downsample the point cloud with a voxel of 0.02")
voxel_down_pcd = pcd.voxel_down_sample(voxel_size=0.02)
o3d.visualization.draw_geometries([voxel_down_pcd], zoom=0.3412,
front=[0.4257, -0.2125, -0.8795],
lookat=[2.6172, 2.0475, 1.532],
up=[-0.0694, -0.9768, 0.2024])
Load a ply point cloud, print it, and render it
Downsample the point cloud with a voxel of 0.02
For comparison, uniform_down_sample
can downsample point cloud by collecting every n-th points.
[3]:
print("Every 5th points are selected")
uni_down_pcd = pcd.uniform_down_sample(every_k_points=5)
o3d.visualization.draw_geometries([uni_down_pcd], zoom=0.3412,
front=[0.4257, -0.2125, -0.8795],
lookat=[2.6172, 2.0475, 1.532],
up=[-0.0694, -0.9768, 0.2024])
Every 5th points are selected
Select down sample¶
The helper function uses select_down_sample
that takes binary mask to output only the selected points. The selected points and the non-selected points are visualized.
[4]:
def display_inlier_outlier(cloud, ind):
inlier_cloud = cloud.select_by_index(ind)
outlier_cloud = cloud.select_by_index(ind, invert=True)
print("Showing outliers (red) and inliers (gray): ")
outlier_cloud.paint_uniform_color([1, 0, 0])
inlier_cloud.paint_uniform_color([0.8, 0.8, 0.8])
o3d.visualization.draw_geometries([inlier_cloud, outlier_cloud],
zoom=0.3412,
front=[0.4257, -0.2125, -0.8795],
lookat=[2.6172, 2.0475, 1.532],
up=[-0.0694, -0.9768, 0.2024])
Statistical outlier removal¶
statistical_outlier_removal
removes points that are further away from their neighbors compared to the average for the point cloud. It takes two input parameters:
nb_neighbors
allows to specify how many neighbors are taken into account in order to calculate the average distance for a given point.std_ratio
allows to set the threshold level based on the standard deviation of the average distances across the point cloud. The lower this number the more aggressive the filter will be.
[5]:
print("Statistical oulier removal")
cl, ind = voxel_down_pcd.remove_statistical_outlier(nb_neighbors=20,
std_ratio=2.0)
display_inlier_outlier(voxel_down_pcd, ind)
Statistical oulier removal
Showing outliers (red) and inliers (gray):
Radius outlier removal¶
radius_outlier_removal
removes points that have few neighbors in a given sphere around them. Two parameters can be used to tune the filter to your data:
nb_points
lets you pick the minimum amount of points that the sphere should containradius
defines the radius of the sphere that will be used for counting the neighbors.
[6]:
print("Radius oulier removal")
cl, ind = voxel_down_pcd.remove_radius_outlier(nb_points=16, radius=0.05)
display_inlier_outlier(voxel_down_pcd, ind)
Radius oulier removal
Showing outliers (red) and inliers (gray):