]> Creatis software - clitk.git/commitdiff
Oups, wrong exception message
authorSimon Rit <simon.rit@creatis.insa-lyon.fr>
Fri, 17 Jun 2011 16:53:45 +0000 (18:53 +0200)
committerSimon Rit <simon.rit@creatis.insa-lyon.fr>
Fri, 17 Jun 2011 16:53:45 +0000 (18:53 +0200)
itk/clitkResampleImageWithOptionsFilter.txx

index 36e08bf6271e09dc6267ab4aa2a7385de573c243..a3f88beb3db8443f08fa376da1480433f24e4051 100644 (file)
@@ -126,14 +126,14 @@ GenerateOutputInformation()
       // because, from a clinical point of view, it's better to 
       // remove data than to add data that privously didn't exist.
       if(inputSpacing[i]*m_OutputSpacing[i]<0)
-        itkExceptionMacro( << "Input and output spacings don't have the same size, can't cope with that" );
+        itkExceptionMacro( << "Input and output spacings don't have the same signs, can't cope with that" );
       m_OutputSize[i] = (int)floor(inputSize[i]*inputSpacing[i]/m_OutputSpacing[i]);
     }
   } else {
     if (m_OutputSpacing[0] != -1) { // apply spacing, compute size
       for(unsigned int i=0; i<dim; i++) {
         if(inputSpacing[i]*m_OutputSpacing[i]<0)
-          itkExceptionMacro( << "Input and output spacings don't have the same size, can't cope with that" );
+          itkExceptionMacro( << "Input and output spacings don't have the same signs, can't cope with that" );
        // see comment above for the use of floor()
        m_OutputSize[i] = (int)floor(inputSize[i]*inputSpacing[i]/m_OutputSpacing[i]);
       }