ITK and VTK Wrapping into Python using Cmake
ITK and VTK Wrapping into Python using Cmake
can we wrap all ITK and VTK files into Python by using cmake? I need full functionalities and all header files to be imported into python.
1 Answer
1
Yes, there is Python wrapping available for ITK and VTK. To install the wrapping,
python -m pip install --upgrade pip
python -m pip install itk vtk
python -m pip install --upgrade pip
python -m pip install itk vtk
For more information on the ITK Python wrapping and how it automatically exposes the full functionality of the header files, see the Wrapping section of the ITK Software Guide.
To add your own Python wrapping for new ITK classes, see the section on ITK Modules and the ITK Module Template.
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.