]> Creatis software - clitk.git/commitdiff
Resample is not robust to i/o spacings with different signs => launch
authorSimon Rit <simon.rit@creatis.insa-lyon.fr>
Fri, 17 Jun 2011 16:40:45 +0000 (18:40 +0200)
committerSimon Rit <simon.rit@creatis.insa-lyon.fr>
Fri, 17 Jun 2011 16:50:51 +0000 (18:50 +0200)
exception

itk/clitkResampleImageWithOptionsFilter.txx

index 7e5eeab4eb78e9d4745d4b9a92fd8f2e34d6430b..36e08bf6271e09dc6267ab4aa2a7385de573c243 100644 (file)
@@ -125,11 +125,15 @@ GenerateOutputInformation()
       // floor() is used to intentionally reduce the number of slices 
       // 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" );
       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" );
        // see comment above for the use of floor()
        m_OutputSize[i] = (int)floor(inputSize[i]*inputSpacing[i]/m_OutputSpacing[i]);
       }
@@ -151,7 +155,7 @@ GenerateOutputInformation()
     m_OutputSize[l] = inputSize[l];
     m_OutputSpacing[l] = inputSpacing[l];
   }
-    
+
   // Set Size/Spacing
   OutputImagePointer outputImage = this->GetOutput(0);
   // OutputImageRegionType region;