Reputation: 19
I used ImageToVTKImageFilter in C++
application for converting my vtk image to itk.
I wanted to implement this concept in my c# .net application. I used ActiViz.NET for my VTK part.
For ITK in c#, wrapITK, ManagedITK and simpleITK options are available but these are low versions and these are not having ItkVtkGlue.
Question: How do I use ITK or how can I implement ItkVtkGlue in my .NET C# application?
Are there any other options are available to use ITK in C# .NET?
Upvotes: 0
Views: 1159
Reputation: 3395
C#
is not supported by ITK
's wrapping infrastructure, and that has been so for quite a while. A simplified variant of ITK
, SimpleITK
, has support for C#
among other languages.
Edit: Both ITK
and SimpleITK
have ImportImageFilter. ITKVTKGlue
uses that filter internally. Using that filter directly requires more code, but can be done without ITKVTKGlue
module.
Upvotes: 3