From 331da865e15b70c982017d06186c28af774daa3f Mon Sep 17 00:00:00 2001 From: alemuntoni Date: Tue, 28 Jul 2020 11:19:04 +0200 Subject: [PATCH] bugfix missing break mutualinfo --- src/meshlabplugins/filter_mutualinfo/filter_mutualinfo.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/meshlabplugins/filter_mutualinfo/filter_mutualinfo.cpp b/src/meshlabplugins/filter_mutualinfo/filter_mutualinfo.cpp index ffb2d52c1..acf331673 100644 --- a/src/meshlabplugins/filter_mutualinfo/filter_mutualinfo.cpp +++ b/src/meshlabplugins/filter_mutualinfo/filter_mutualinfo.cpp @@ -104,6 +104,7 @@ void FilterMutualInfoPlugin::initParameterSet(QAction *action,MeshDocument & /*m parlst.addParam(new RichFloat("Tolerance", 0.1, "Tolerance", "Threshold to stop convergence")); parlst.addParam(new RichFloat("ExpectedVariance", 2.0, "Expected Variance", "Expected Variance")); parlst.addParam(new RichInt("BackgroundWeight", 2, "Background Weight", "Weight of background pixels (1, as all the other pixels; 2, one half of the other pixels etc etc)")); + break; default : assert(0); }