X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=tools%2FclitkImageArithmGenericFilter.txx;h=24ebbbdac8d2d472ec6ddca3eebbdcfdd5f33f6f;hb=6fa5bbd40985c9fd270cc1b66e19290aeea90712;hp=82781083f302d627e8e0f57429bf3fa5735e6b41;hpb=3706c8037518ec336c8182fc2db1d08f1700bf1d;p=clitk.git diff --git a/tools/clitkImageArithmGenericFilter.txx b/tools/clitkImageArithmGenericFilter.txx index 8278108..24ebbbd 100644 --- a/tools/clitkImageArithmGenericFilter.txx +++ b/tools/clitkImageArithmGenericFilter.txx @@ -119,8 +119,6 @@ void ImageArithmGenericFilter::UpdateWithInputImageType() ff->SetImage(input1); ff->ComputeMaximum(); mScalar = ff->GetMaximum(); - DD(mScalar); - DD("normalisation"); mTypeOfOperation = 11; // divide } @@ -130,9 +128,12 @@ void ImageArithmGenericFilter::UpdateWithInputImageType() // Set input image iterator it2 = IteratorType(input2, input2->GetLargestPossibleRegion()); // Check dimension - if (!clitk::HaveSameSizeAndSpacing(input1, input2)) { - std::cerr << "* ERROR * the images (input and input2) must have the same size & spacing"; - return; + if (!clitk::HaveSameSize(input1, input2)) { + itkExceptionMacro(<< "The images (input and input2) must have the same size"); + } + if(!clitk::HaveSameSpacing(input1, input2)) { + itkWarningMacro(<< "The images (input and input2) do not have the same spacing. " + << "Using first input's information."); } }