1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
""" This module loads all the classes from the vtkVmtk library into its
namespace. This is a required module."""
import os
import vtk
from vtkvmtkCommonPython import *
from vtkvmtkComputationalGeometryPython import *
from vtkvmtkDifferentialGeometryPython import *
from vtkvmtkIOPython import *
from vtkvmtkMiscPython import *
try:
from vtkvmtkRenderingPython import *
except:
pass
from vtkvmtkSegmentationPython import *
from vtkvmtkITKPython import *
try:
from vtkvmtkContribPython import *
except:
pass
|