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
0
votes
1 answer

Error when installing ITK with Python bindings

I'm installing ITK 4.2.2 on OsX 10.8.4. I built it with CMake 2.8.11.1 using the Unix Makefiles generator. I'll need the python wrappings, so I selected ITK_WRAP_PYTHON. After I built it, I went to the directory containing the build files in the…
sudo make install
  • 5,629
  • 3
  • 36
  • 48
0
votes
1 answer

Read DICOM images

i am trying to read dicom images without using imageviewer and i came across VtkGdmReader.. when i am trying to execute it, its giving me an error: code => vtkGdmReader example error C2039: 'SetInput' : is not a member of 'vtkTexture' error C2039:…
faisal
  • 53
  • 1
  • 9
0
votes
1 answer

Get rid of god object of QMainWindow

I am making an application with three libraries ITK VTK and Qt. Since I want all functionality in the event loop and connection of signals and slots so I defined all functionality under QMainWindow definition. Now mainwindow object became bulky and…
QT-ITK-VTK-Help
  • 548
  • 2
  • 6
  • 19
0
votes
0 answers

Define an empty ITK image with ipython

I'm trying to define an empty ITK image of a certain 3D size on iPython notebook and I'm stuck at defining the so called: 'itkIndex3' index I've already loaded all python bindings for itk and vtk, and defined the different types (In this case a…
Ciller
  • 13
  • 6
0
votes
1 answer

CMake not importing all ITK libraries during configuration

I am working a project that uses the Discrete Gaussian Image Filter within ITK. I am using CMake to automate the build process but it seems that CMake is leaving out certain ITK libraries during the configuration/generate step. I am currently using…
poliu2s
  • 657
  • 1
  • 10
  • 30
0
votes
1 answer

itk 3.20.1 Processor affinity

is there any way to set Processor affinity for ITK (3.20.1) threads. I was looking into ITK::MultiThreader class which has "SetGlobalDefaultNumberOfThreads". but i am not finding any function/method which is saying anything about affinity. any help…
0
votes
1 answer

Undefined symbols for architecture x86_64 - Visual toolkit Compilation (VTK - QT)

I'm working in the development of an application in QT, based on the combination of several already existing tools such as: ITK, VTK, DCMTK and SoQT (among others...). I'm trying to compile this whole mess and after several attempts, I can't help…
Ciller
  • 13
  • 6
0
votes
2 answers

Linker error when using ITK in QT

I am trying to use ITK within QT (New to QT and rusty in ITK) I was finally able to define the include paths and .lib but I am still not able to run my code. It is a simple dicom reader: typedef signed short InputPixelType; const unsigned int…
Dave
  • 85
  • 1
  • 1
  • 6
0
votes
1 answer

Error in building itk with GDCM git repository

I build ITK with gdcm official release for windows. But its not having some of file that I'm using in further coding. So I have to use git version of gdcm cause its having those which I needed but following error encountered when I am trying to…
QT-ITK-VTK-Help
  • 548
  • 2
  • 6
  • 19
0
votes
1 answer

Cmake Error for ITK with GDCM configuration

Following error found while configuring ITK with GDCM2.2 CMake Error at Modules/ThirdParty/GDCM/itk-module-init.cmake:5 (find_package): By not providing "FindGDCM.cmake" in CMAKE_MODULE_PATH this project has asked CMake to find a package…
QT-ITK-VTK-Help
  • 548
  • 2
  • 6
  • 19
0
votes
1 answer

Error in Instaling QVTKWidgetPlugin

Hie, I am new to VTK.I want to use QVTKPluginWidget in Qt designer. I am using Visual Studio 2008 with MSVC compiler CMake- 2.8.10.1 Qt Version -4.8.3 VTK - 5.0 As per VTK User's Guide we have to configure VTK Lib with Cmake with setting few options…
QT-ITK-VTK-Help
  • 548
  • 2
  • 6
  • 19
0
votes
1 answer

Error while building ITK: libITKCommon-4.2.dll is not existing after build with MinGW

I am having this error while building ITK library using MinGW generator. After built while building a program I got error : mingw32-make[2]: * No rule to make target 'C:/ITK/mingwbin/lib/libITKCommon-4.2.dll.a', needed by 'Events.exe'. I checked in…
QT-ITK-VTK-Help
  • 548
  • 2
  • 6
  • 19
0
votes
2 answers

Error opening MINC 2.0 images with SimpleITK 0.5.1 C# Windows

I am trying to load an MINC 2.0 Image with SimpleITK 0.5.1 C# version I get the following error: System.ApplicationException : Exception thrown in SimpleITK ImageFileReader_Execute:…
Sebastian Widz
  • 1,962
  • 4
  • 26
  • 45
0
votes
1 answer

Uncertainty about the term "image lable file" (ITK)

I've been using ITK recently and I'm not really skillful on it, so I apologize if my question seems childish ! here is the question: I've built a couple of ITK Examples on my machine (Win 7 x64) successfully and then tried to run an example to test…
0
votes
1 answer

Disable rotation on Z axis

I am developing an application to register and display a 3D DICOM image using VTK, ITK, and QT. I am running into some issues with the registration part. I am using the ScaleVersor3DTransform, VersorTransformOptimizer,…
undefined
  • 660
  • 7
  • 18