Questions tagged [itk]

ITK is an open-source, cross-platform system that provides developers with an extensive suite of software tools for image analysis. SimpleITK is a simplified layer built on top of ITK, intended to facilitate its use in rapid prototyping, education, interpreted languages.

ITK is an open-source, cross-platform system that provides developers with an extensive suite of software tools for image analysis. Developed through extreme programming methodologies, ITK employs leading-edge algorithms for registering and segmenting multidimensional data. The goals for ITK include:

ITK:

  • Supporting the Visible Human Project.
  • Establishing a foundation for future research.
  • Creating a repository of fundamental algorithms.
  • Developing a platform for advanced product development.
  • Support commercial application of the technology.
  • Create conventions for future work.
  • Grow a self-sustaining community of software users and developers.

SimpleITK:

  • Provides a simplified, easy-to-use, procedural interface without templates
  • Is distributed under an open source Apache 2.0 License
  • Binary distributions for Python and Java

Links

530 questions
-2
votes
1 answer

Can anyone share the documentation of itk and vtk for python 3.5

I need some documentation related to itk and vtk for python 3.5 for my learning process.so, any help would be appreciated..Thank you.
-2
votes
1 answer

How can I convert a CImg image to an itkImage?

I have a CImg image (with double values) with the following form in c++: CImg image(512,512); Tcyl.fill(1); I would like to use ITK functionality to transform this image. So I need to transform this CImg image into itkImage object. How can…
user7938219
-2
votes
1 answer

ITK compilation with cmake

I tried to compile a simple helloWord C++ program with cmake using the ITK library. However I have some difficulties to link with the ITK library and my program doesn't work. I put my program in the attachment. helloWorld programme CMakeLists.txt :…
axel
  • 77
  • 1
  • 9
-2
votes
1 answer

Cimg and itk image

I have a Cimg image and I want to use it with ITK (for registration). How can I create a ITK image from this Cimg image. Also can I want to create an OpenCV image from a ITK image? So can I use these libraries together? Thanks for helping.
-4
votes
1 answer

Template function which accepts a template class

I want to write a template function which accepts template class as a input parameter. template void Function(T Input) { } Something like above. can the class be Template class?? if yes, how do i write it? i got an error trying to do…
Barry
  • 133
  • 1
  • 1
  • 9
1 2 3
35
36