]> Creatis software - clitk.git/commitdiff
itk4.3 compatibility
authorVivien Delmon <vivien.delmon@creatis.insa-lyon.fr>
Mon, 14 Jan 2013 17:16:48 +0000 (18:16 +0100)
committerVivien Delmon <vivien.delmon@creatis.insa-lyon.fr>
Mon, 14 Jan 2013 17:16:48 +0000 (18:16 +0100)
- Use Update instead of StartRegistration

registration/clitkAffineRegistrationGenericFilter.cxx
registration/clitkBLUTDIRGenericFilter.cxx

index 3f0145eca9d10064044db55d8908f4aebc458633..6b0ecffbfdba87541e128945fceae0b13a0fcd5d 100644 (file)
@@ -541,7 +541,11 @@ void AffineRegistrationGenericFilter::UpdateWithInputImageType()
   if (m_Verbose) std::cout << "Starting the registration now..." << std::endl;
 
   try {
+#if ITK_VERSION_MAJOR < 4 || (ITK_VERSION_MAJOR == 4 && ITK_VERSION_MINOR <= 2)
     registration->StartRegistration();
+#else
+    registration->Update();
+#endif
   } catch ( itk::ExceptionObject & err ) {
     std::cerr << "ExceptionObject caught !" << std::endl;
     std::cerr << err << std::endl;
index 06045c52defc3a3774844c2bd30334cb4add04a1..c786eeb59dedbd6e1c50d48799e632af63dd126f 100644 (file)
@@ -733,7 +733,11 @@ namespace clitk
 
       try
       {
+#if ITK_VERSION_MAJOR < 4 || (ITK_VERSION_MAJOR == 4 && ITK_VERSION_MINOR <= 2)
         registration->StartRegistration();
+#else
+        registration->Update();
+#endif
       }
       catch( itk::ExceptionObject & err )
       {