PyVE and the packages it is made of are available as various flavours of open-source packages. Therefore if you don’t find the binary for your system (actually only a Windows binary is distributed) you can compile it yourself.
What you need is a good dose of patience.
Depending on your system however, you may or may not find suitable binary packages for the following software packages at their websites.
The following software packages must be compiled and installed on your system in order to have PyVE working.
We will cover here the compilation instructions for the first 5 packages. The other packages should compile out of the box following the general instructions that are provided at the respective websites.
The instructions are reported for Windows but the same settings can be used for the compilation in other systems. The PyVE Viewer is reported to have been compiled under Linux (Debian 6.0 powerpc) and MacOSX 10.4.11.
To build VTK, you need CMake.
BUILD_SHARED_LIBS ON
BUILD_TESTING OFF
CMAKE_INSTALL_PREFIX # Location where you want to install VTK
VTK_DATA_ROOT # location where you downloaded and unpacked VTKData
VTK_WRAP_PYTHON ON
VTK_USE_GUISUPPORT ON
VTK_USE_TK OFF
VTK_USE_QVTK ON
DESIRED_QT_VERSION 4
VTK_USE_QVTK_QTOPENGL ON
msbuild VTK.sln /property:configuration=Release
msbuild INSTALL.vcproj /property:configuration=Release
Qt designer plugin: To add the VTK viewer widget to the Qt designer:
With VTK compiled and installed it is already possible to compile the PyVE Viewer class with CMake.
git clone git://git.code.sf.net/p/pyve/code pyve-code
msbuild vtkPyve.sln /property:configuration=Release
msbuild INSTALL.vcproj /property:configuration=Release
To wrap ITK for Python using the WrapITK project, you will need CableSwig. CableSwig is currently only available by CVS.
cvs -d :pserver:anonymous@public.kitware.com:/cvsroot/CableSwig co CableSwig
BUILD_EXAMPLES OFF
BUILD_SHARED_LIBS ON
BUILD_TESTING OFF
CMAKE_INSTALL_PREFIX # Location where you eventually want to install ITK
ITK_USE_REVIEW ON
USE_WRAP_ITK ON
WRAP_ITK_DIMS 2;3;4
WRAP_ITK_PYTHON ON
WRAP_Iterators ON
WRAP_rgb_unsigned_char ON
WRAP_rgb_unsigned_short OFF
WRAP_rgba_unsigned_char ON
WRAP_rgba_unsigned_short OFF
WRAP_signed_short ON
WRAP_unsigned_char ON
WRAP_unsigned_short OFF
msbuild ITK.sln /property:configuration=Release
msbuild INSTALL.vcproj /property:configuration=Release
To build GDCM, you need SWIG.
CMAKE_INSTALL_PREFIX # Location where you want to install GDCM
GDCM_BUILD_SHARED_LIBS ON
GDCM_WRAP_PYTHON ON
SWIG_EXECUTABLE [SWIG]\swig.exe