
https://svn.lrde.epita.fr/svn/oln/trunk/milena Index: ChangeLog from Thierry Geraud <thierry.geraud@lrde.epita.fr> Fix missing updates about debug colorize. * mln/debug/all.hh, * tests/morpho/meyer_wst_long.cc: Fix missing updates about debug colorize. * mln/registration/icp.hh: Likewise; unused so remove. mln/debug/all.hh | 8 ++++---- mln/registration/icp.hh | 1 - tests/morpho/meyer_wst_long.cc | 7 ++++--- 3 files changed, 8 insertions(+), 8 deletions(-) Index: mln/debug/all.hh --- mln/debug/all.hh (revision 3776) +++ mln/debug/all.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 @@ -40,14 +40,14 @@ /// Namespace of routines that help to debug. namespace debug { + /// Implementation namespace of debug namespace. namespace impl {} - } } +} -# include <mln/debug/colorize.hh> # include <mln/debug/format.hh> # include <mln/debug/draw_graph.hh> # include <mln/debug/histo.hh> Index: mln/registration/icp.hh --- mln/registration/icp.hh (revision 3776) +++ mln/registration/icp.hh (working copy) @@ -62,7 +62,6 @@ # include <mln/io/ppm/save.hh> # include <mln/io/pbm/save.hh> -# include <mln/debug/colorize.hh> # include <mln/debug/histo.hh> # include <mln/accu/histo.hh> Index: tests/morpho/meyer_wst_long.cc --- tests/morpho/meyer_wst_long.cc (revision 3776) +++ tests/morpho/meyer_wst_long.cc (working copy) @@ -1,4 +1,5 @@ -// Copyright (C) 2008 EPITA Research and Development Laboratory (LRDE) +// Copyright (C) 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 @@ -50,7 +51,7 @@ #include <mln/io/pgm/load.hh> #include <mln/io/ppm/save.hh> -#include <mln/debug/colorize.hh> +#include <mln/labeling/colorize.hh> #include "tests/data.hh" @@ -73,5 +74,5 @@ image2d<L> ws = morpho::meyer_wst(clo, c4(), nbasins); // Save the image in color. - io::ppm::save(debug::colorize(value::rgb8(), ws, nbasins), "out.ppm"); + io::ppm::save(labeling::colorize(value::rgb8(), ws, nbasins), "out.ppm"); }