]> Creatis software - clitk.git/commitdiff
Ensure compatibility with VTK7
authortbaudier <thomas.baudier@creatis.insa-lyon.fr>
Mon, 8 Feb 2016 15:51:19 +0000 (16:51 +0100)
committertbaudier <thomas.baudier@creatis.insa-lyon.fr>
Mon, 8 Feb 2016 15:51:19 +0000 (16:51 +0100)
common/vvImage.txx

index ab518cb9095f60df17204d5d74e9614096fe8890..8574bfd530eeae686fe062a3e54e5019bcdfa34b 100644 (file)
@@ -41,11 +41,21 @@ void vvImage::AddItkImage(TItkImageType *input)
   matrix->Identity();
   for(unsigned int i=0; i<input->GetImageDimension(); i++) {
     for(unsigned int j=0; j<input->GetImageDimension(); j++) {
+#if VTK_MAJOR_VERSION <= 6
       (*matrix)[i][j] = input->GetDirection()[i][j];
       // Direction is used around the image origin in ITK
       (*matrix)[i][3] -= (*matrix)[i][j] * input->GetOrigin()[j];
+#else
+      (*matrix).SetElement(i, j, input->GetDirection()[i][j]);
+      // Direction is used around the image origin in ITK
+      (*matrix).SetElement(i, 3, (*matrix).GetElement(i,3) - (*matrix).GetElement(i,j) * input->GetOrigin()[j]);
+#endif
     }
+#if VTK_MAJOR_VERSION <= 6
     (*matrix)[i][3] += input->GetOrigin()[i];
+#else
+    (*matrix).SetElement(i, 3, (*matrix).GetElement(i,3) + input->GetOrigin()[i]);
+#endif
   }
 
   // GetDirection provides the forward transform, vtkImageReslice wants the inverse