Difference between revisions of "AHM2013-Simple-ITK"

From NAMIC Wiki
Jump to: navigation, search
Line 1: Line 1:
 +
[[AHM_2013#Agenda|Back to AHM_2013 Agenda]]
 +
 
Presenters: Bradley Lowekamp
 
Presenters: Bradley Lowekamp
  

Revision as of 03:47, 4 January 2013

Home < AHM2013-Simple-ITK
Back to AHM_2013 Agenda

Presenters: Bradley Lowekamp

Background

SimpleITK is an abstraction layer on top of ITK which provides Python bindings for many of the algorithms in ITK. The tool is under active development and recent additions have focus on providing a more Pythonic interface to Image class, numerous additional algorithms, and the addition of transforms and interpolators.

SimpleITK is a build option in Slicer3D when using ITKv4. It can provide many powerful algorithms to Slicer as

Version 0.6.0rc01 is scheduled available for binary download on January 6th.

Summary

This presentation will consist of a slide presentation covering the fundamental concepts and style of SimpleITK. Along with the numerous Python specific features available. Then interactive demonstration of SimpleITK with be done in the iPython notebook environment utilizing the pylab functionality to demonstrate algorithms in ITK along with Pythonic work flows.


Attendee Preparation

Attendees are encouraged to setup a python environment to follow along during this session.

Under the best of circumstances (tested on OSX 10.8) this environment can be setup with the following:

sudo pip install virutalenv
virtualenv ~/sitkpy --no-site-packages
~/sitkpy/bin/pip install ipython
~/sitkpy/bin/pip install ipython[zmq]
~/sitkpy/bin/pip install Tornado
~/sitkpy/bin/pip install numpy
~/sitkpy/bin/pip install matplotlib
~/sitkpy/bin/easy_install SimpleITK

To launch:

~/sitkpy/bin/ipython notebook --pylab=inline

Note: On Linux platforms you may be able to obtain many of these packages as system packages which may suffice ( Ubuntu 12+). Note: On Window platforms some of these packages should be obtained as binary downloads and installed.