]> Creatis software - clitk.git/commitdiff
Add double image managment for clitkAffineTransform
authortbaudier <thomas.baudier@creatis.insa-lyon.fr>
Mon, 26 Nov 2018 15:49:25 +0000 (16:49 +0100)
committertbaudier <thomas.baudier@creatis.insa-lyon.fr>
Mon, 26 Nov 2018 15:49:25 +0000 (16:49 +0100)
By default, the image use Float and did not manage double images. I add a condition to handle double image

tools/clitkAffineTransformGenericFilter.txx

index ab488f3710edcddb8952f142a53d051acf157827..a3ec42038e431c41c909550e5ed6b4c6f2eaf70f 100644 (file)
@@ -94,6 +94,10 @@ namespace clitk
       //       if (m_Verbose) std::cout  << "Launching filter in "<< Dimension <<"D and signed_char..." << std::endl;
       //       UpdateWithDimAndPixelType<Dimension, signed char>();
       //     }
+      else if(PixelType == "double"){
+        if (m_Verbose) std::cout  << "Launching filter in "<< Dimension <<"D and double..." << std::endl;
+        UpdateWithDimAndPixelType<Dimension, double>();
+      }
       else {
         if (m_Verbose) std::cout  << "Launching filter in "<< Dimension <<"D and float..." << std::endl;
         UpdateWithDimAndPixelType<Dimension, float>();