From 4ebae09f4524e2ed06efd24f07434c0ce6bba9c1 Mon Sep 17 00:00:00 2001 From: alemuntoni Date: Wed, 21 Jul 2021 10:18:47 +0200 Subject: [PATCH] documentation hausdorff filter --- src/meshlabplugins/filter_sampling/filter_sampling.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/meshlabplugins/filter_sampling/filter_sampling.cpp b/src/meshlabplugins/filter_sampling/filter_sampling.cpp index 6afbf73ff..9b2b128b1 100644 --- a/src/meshlabplugins/filter_sampling/filter_sampling.cpp +++ b/src/meshlabplugins/filter_sampling/filter_sampling.cpp @@ -414,7 +414,7 @@ QString FilterDocSampling::filterInfo(ActionIDType filterId) const "samples are generated according to a Poisson-disk distribution, using the algorithm described in:
" "'Efficient and Flexible Sampling with Blue Noise Properties of Triangular Meshes'
" " Massimiliano Corsini, Paolo Cignoni, Roberto Scopigno
IEEE TVCG 2012"); - case FP_HAUSDORFF_DISTANCE : return QString("Compute the Hausdorff Distance between two layers, sampling one of the two and finding for each sample the closest point over the other mesh."); + case FP_HAUSDORFF_DISTANCE : return QString("Compute the Hausdorff Distance between two layers, sampling one of the two and finding for each sample the closest point over the other mesh. Distance is stored in vertex quality of the sampled mesh."); case FP_DISTANCE_REFERENCE : return QString("Compute the signed/unsigned (per vertex) distance between a mesh/pointcloud and a reference mesh/pointcloud. Distance is stored in vertex quality."); case FP_TEXEL_SAMPLING : return QString("Create a new layer with a point sampling of the current mesh, a sample for each texel of the mesh is generated"); case FP_VERTEX_RESAMPLING : return QString("Transfer the chosen per-vertex attributes from one layer to another. Useful to transfer attributes to different representations of a same object.
"