3648: Remove debug in io::tiff::load.

* mln/io/tiff/load.hh: Remove debug. --- milena/ChangeLog | 7 +++++++ milena/mln/io/tiff/load.hh | 3 --- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/milena/ChangeLog b/milena/ChangeLog index 5b19a15..87e74e0 100644 --- a/milena/ChangeLog +++ b/milena/ChangeLog @@ -1,4 +1,11 @@ 2009-04-08 Guillaume Lazzara <lazzara@lrde.epita.fr> + + Remove debug in io::tiff::load. + + * mln/io/tiff/load.hh: Remove debug. + + +2009-04-08 Guillaume Lazzara <lazzara@lrde.epita.fr> Fix io::tiff::load. diff --git a/milena/mln/io/tiff/load.hh b/milena/mln/io/tiff/load.hh index fcae4ac..e69685e 100644 --- a/milena/mln/io/tiff/load.hh +++ b/milena/mln/io/tiff/load.hh @@ -78,10 +78,7 @@ namespace mln TIFFGetField(file, TIFFTAG_IMAGEWIDTH, &width); TIFFGetField(file, TIFFTAG_IMAGELENGTH, &height); - std::cout << "height == " << height << " - width == " << width << std::endl; mln_concrete(I) new_ima(height, width, 0); - std::cout << "nrows == " << new_ima.nrows() << " - ncols == " << new_ima.ncols() << std::endl; - std::cout << "nrows == height and ncols == width" << std::endl; exact(ima) = new_ima; } -- 1.5.6.5
participants (1)
-
Guillaume Lazzara