I am trying to re-use the ExtractCenterline.py code.
In the script there are 2 imports that interest me :
import vtkvmtkComputationalGeometryPython as vtkvmtkComputationalGeometry
import vtkvmtkMiscPython as vtkvmtkMisc
I found the two libraries in the extension folder of vmtkSlicer with a .pyd extension and copied them in my folder project.
Unfortunately, when I launch my python script importing this libraries, it fails to import those.
Those anyone know how to use this libraries and how to import them?
@lassoan I downgraded my version of Python to 3.6 in order to meet the installation of vmtk but I am still not able to import the libraries.
I get the following error :
Traceback (most recent call last):
File “test.py”, line 16, in
import vtkvmtkMiscPython as vtkvmtkMisc
ImportError: DLL load failed: The specified module could not be found.
I am stuck, I don’t understand why it can’t access to the library…
You probably need to add the folder that contains the DLLs to you PYTHONPATH environment variable. Also make sure that all other DLLs that VMTK DLLs depend on (such as entire VTK) are available on the path. You can use Dependency Walker to find out what DLLs you need.