]> Creatis software - cpPlugins.git/commitdiff
Interactive filters synchronization debugged
authorLeonardo Florez-Valencia <florez-l@javeriana.edu.co>
Thu, 26 Nov 2015 14:43:12 +0000 (09:43 -0500)
committerLeonardo Florez-Valencia <florez-l@javeriana.edu.co>
Thu, 26 Nov 2015 14:43:12 +0000 (09:43 -0500)
lib/cpPlugins/Interface/Image.hxx

index 8c31dca4c7e6acc0caf11e6842a16168871b6037..5b675b2bcada1e7a2a436d6c50594f30efd9cb30 100644 (file)
@@ -116,6 +116,7 @@ void cpPlugins::Interface::Image::
 _ITK_2_VTK( itk::Object* object )
 {
   typedef itk::Image< P, D > _I;
+  typedef itk::ImageToVTKImageFilter< _I > _I2Vtk;
 
   // Check if input object has the desired type
   _I* image = dynamic_cast< _I* >( object );
@@ -123,14 +124,20 @@ _ITK_2_VTK( itk::Object* object )
     return;
 
   // Connect it to VTK
-  typename itk::ImageToVTKImageFilter< _I >::Pointer f =
-    itk::ImageToVTKImageFilter< _I >::New( );
+  _I2Vtk* f =
+    dynamic_cast< _I2Vtk* >( this->m_ITKvVTKConnection.GetPointer( ) );
+  if( f == NULL )
+  {
+    typename _I2Vtk::Pointer nf = _I2Vtk::New( );
+    this->m_ITKvVTKConnection = nf;
+    f = nf.GetPointer( );
+
+  } // fi
   f->SetInput( image );
   f->Update( );
 
-  // Keep objects
+  // Keep object track
   this->m_VTKObject = f->GetOutput( );
-  this->m_ITKvVTKConnection = f;
 }
 
 #ifndef cpPlugins_Interface_EXPORTS