I recenlty installed python-xy 2.7.10 and trying to run a simple script using itk fails due to the following error:
RuntimeError: C:\u\itk-git_b\Modules\Remote\SCIFIO\src\itkSCIFIOImageIO.cxx:274: itk::ERROR: SCIFIOImageIO(0295DBE0): SCIFIO_PATH is not set. This environment variable must point to the directory containing the SCIFIO JAR files
The script I'm running now is simple enough:
import itk
pixelType = itk.UC
imageType = itk.Image[pixelType, 2]
readerType = itk.ImageFileReader[imageType]
reader = readerType.New()
reader.SetFileName("./Sand_sample.bmp")
reader.Update()