https://svn.lrde.epita.fr/svn/oln/trunk/milena
Index: ChangeLog
from Thierry Geraud <thierry.geraud(a)lrde.epita.fr>
Fix missing update in labeling extrema.
* mln/labeling/regional_minima.hh,
* mln/labeling/regional_maxima.hh: Fix missing update.
regional_maxima.hh | 6 +++---
regional_minima.hh | 6 +++---
2 files changed, 6 insertions(+), 6 deletions(-)
Index: mln/labeling/regional_minima.hh
--- mln/labeling/regional_minima.hh (revision 3510)
+++ mln/labeling/regional_minima.hh (working copy)
@@ -1,5 +1,5 @@
-// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
-// (LRDE)
+// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
+// Laboratory (LRDE)
//
// This file is part of the Olena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
@@ -154,7 +154,7 @@
typedef impl::regional_minima_functor<I> F;
F f(exact(input));
mln_ch_value(I, L) output = canvas::labeling_sorted(input, nbh, nlabels,
- f, true);
+ f, false);
trace::exiting("labeling::regional_minima");
return output;
Index: mln/labeling/regional_maxima.hh
--- mln/labeling/regional_maxima.hh (revision 3510)
+++ mln/labeling/regional_maxima.hh (working copy)
@@ -1,5 +1,5 @@
-// Copyright (C) 2007, 2008 EPITA Research and Development Laboratory
-// (LRDE)
+// Copyright (C) 2007, 2008, 2009 EPITA Research and Development
+// Laboratory (LRDE)
//
// This file is part of the Olena Library. This library is free
// software; you can redistribute it and/or modify it under the terms
@@ -141,7 +141,7 @@
typedef impl::regional_maxima_functor<I> F;
F f(exact(input));
mln_ch_value(I, L) output = canvas::labeling_sorted(input, nbh, nlabels,
- f, false);
+ f, true);
trace::exiting("labeling::regional_maxima");
return output;