From 8adc4c20d1d3b381518779190e32a73ace2accbe Mon Sep 17 00:00:00 2001 From: Mael Date: Fri, 1 Apr 2022 15:42:09 +0200 Subject: [PATCH] Fix message for #5698 --- Installation/CHANGES.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Installation/CHANGES.md b/Installation/CHANGES.md index 792b381273d..f11eebd8d61 100644 --- a/Installation/CHANGES.md +++ b/Installation/CHANGES.md @@ -9,8 +9,7 @@ Release date: June 2022 ### [Point Set Processing](https://doc.cgal.org/5.5/Manual/packages.html#PkgPointSetProcessing3) -- Added the function [`grid_simplify_point_set()`](https://doc.cgal.org/latest/Point_set_processing_3/group__PkgPointSetProcessing3Algorithms.html#gac7c81cc8a2986e3972e86612e4f847a1) - which merges points which belong to the same cell of a grid. +- A new optional named parameter, `min_points_per_cell` has been added to [`grid_simplify_point_set()`](https://doc.cgal.org/latest/Point_set_processing_3/group__PkgPointSetProcessing3Algorithms.html#gac7c81cc8a2986e3972e86612e4f847a1). By adding a minimal number of points in a cell such that a point is retained, one can also filter out low density areas and outliers: in the case of densely sampled point clouds, this yields better results than using grid simplification and then outlier removal, while being very vast. The default value is `1` to keep the previous behavior as default. ### [dD Spatial Searching](https://doc.cgal.org/5.5/Manual/packages.html#PkgSpatialSearchingD)