Hi all,
I tried to build ITK Strain Image Filter https://github.com/KitwareMedical/ITKStrain and to install it.
I used a conda virtual env with Python 3.6 and ITK 5.0.0.post1 from pypy in the environment, a self-build local ITK 5.0.1 and skbuild using Win 10 x64.
I did “python setup.py install” and it finished without errors. Actually if I “conda list” in the env, there is a package called itk-strain 0.1.0. But I did not manage to import the module to python.
I tried:
“from itk import StrainImageFilter” --> module ‘itk’ has no attribute ‘StrainImageFilter’
“import itk-strain” --> syntax-error
“import itk_strain” --> no module itk_strain
Actually, I am not aware how the module is finally named.
I did not finde a module in “help(‘modules’)”, neither did I find a submodule in “dir(‘itk’)”
Is there a specific way to find the correct naming convention of a remote module, wrapped for python? Do I need change something in cmake to enable Python wrapping before I build ITK on my System?
I appreciate any answers and hints.
Kind Regards