From 0f60be8c42b7197df12aae537c179b4d34510fac Mon Sep 17 00:00:00 2001 From: Manuel Grizonnet <manuel.grizonnet@orfeo-toolbox.org> Date: Thu, 18 Apr 2013 15:04:08 +0200 Subject: [PATCH] ENH: remove some debug messages --- Code/IO/otbImageFileWriter.txx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Code/IO/otbImageFileWriter.txx b/Code/IO/otbImageFileWriter.txx index 8ccc3eb043..a495fa315d 100644 --- a/Code/IO/otbImageFileWriter.txx +++ b/Code/IO/otbImageFileWriter.txx @@ -501,8 +501,6 @@ ImageFileWriter<TInputImage> m_ShiftOutputIndex = start; inputRegion.SetIndex(m_ShiftOutputIndex); - otbMsgDevMacro(<< "inputRegion " << inputRegion); - if (!inputRegion.Crop(inputPtr->GetLargestPossibleRegion())) { // Couldn't crop the region (requested region is outside the largest @@ -631,7 +629,6 @@ ImageFileWriter<TInputImage> //Set the ioRegion index using the shifted index ( (0,0 without box parameter)) ioRegion.SetIndex(i, streamRegion.GetIndex(i) - m_ShiftOutputIndex[i]); } - otbMsgDevMacro(<< "ioregion " << ioRegion ) this->SetIORegion(ioRegion); m_ImageIO->SetIORegion(m_IORegion); @@ -737,8 +734,6 @@ ImageFileWriter<TInputImage> cacheImage->SetBufferedRegion(ioRegion); cacheImage->Allocate(); - otbMsgDevMacro(<< "ioRegion " << ioRegion); - typedef itk::ImageRegionConstIterator<TInputImage> ConstIteratorType; typedef itk::ImageRegionIterator<TInputImage> IteratorType; -- GitLab