Hi,<div><br>
<div>I&#39;m using managedITK v 3.14.0.0 and  vtkDotnet v 5.0.1</div><div><br></div><div>I have a problem with managedITK and vtkDotnet when passing an itkImage to Vtkimage by using itkImageToVTKImageFilter.</div><div><br>


</div><div>I searched for the possible solutions and then I saw this link &quot;<a href="http://www.itk.org/pipermail/insight-users/2008-April/025400.html" target="_blank">http://www.itk.org/pipermail/insight-users/2008-April/025400.html</a>&quot;</div>


<div><br></div><div>I completely understood the problem is about between the  const pointers and native classes.</div><div><br></div><div>However,  though it is said that this problem will have been fixed in the next version of managed ITK, I&#39;m still getting the same error.</div>


<div><br></div><div>I also tried vtkImageImport and vtkImageExport to convert itkImage by using its NativePointer (itkImage.NativePointer) but I always got the same error &quot;<b>AccessViolationException</b>&quot;.</div>


<div><br></div><div><br></div><div>I just want to know if managedITK and vtkDotnet is still being supported or am I missing something ?</div><div><br></div><div><br></div><div>For example:</div><div><div>                itkImage_US3 itkImageData = itkImage_US3.New();</div>
<div>                itkImageData.Read(imagePath);</div><div>                itkImageData.DisconnectPipeline();</div></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div>                itkImageToVTKImageFilter_ISS3 connector = itkImageToVTKImageFilter_ISS3.New(); --&gt;warning itkProcessObject.cxx line 520</div>
<div><br></div><div><div>                connector.SetInput(itkImageData);</div><div>                imageData = connector.GetOutput();</div><div><br></div><div>                imageData.Update();</div></div><div><br></div>
<div><br></div><div><div><br></div></div><div><br></div><div><div>                vtkImageExport vtkExport = new vtkImageExport();</div><div>

                vtkImageImport vtkImport = new vtkImageImport();</div></div><div><br></div><div><div>                vtkExport.SetNativePointer(itkImageData.NativePointer);</div><div>                vtkImport.SetDataOrigin(vtkExport.GetDataOrigin());        ----&gt; AccessViloationException</div>


</div><div><br></div><div><br></div><div><br></div></div>