I/O Plugin infrastructure + wx/qt plugins

Hi all, Chris and I have been working towards a more complete plugin framework this afternoon. Please have a look at http://github.com/stefanv/scikits.image in the `io` branch to see what's been done so far. You may try the new qt or wx image display plugins as follows: import scikits.image.io as io import numpy as np io.load_plugin('qt') # or 'wx' io.imshow(np.random.random((200, 200)) All the plugins available may be queried with io.plugins() Regards Stéfan

Just fair warning, the wx plugin still has problems in its current state, until i can figure out a solution to the threading problem. As it stands right now in Stefans 'io' branch, you have to run an ipython session with the -wthread switch in order for the wx imshow function to work. This will be fixed hopefully soon.... Chris 2009/11/2 Stéfan van der Walt <stefan@sun.ac.za>:
Hi all,
Chris and I have been working towards a more complete plugin framework this afternoon. Please have a look at
http://github.com/stefanv/scikits.image
in the `io` branch to see what's been done so far. You may try the new qt or wx image display plugins as follows:
import scikits.image.io as io import numpy as np
io.load_plugin('qt') # or 'wx' io.imshow(np.random.random((200, 200))
All the plugins available may be queried with
io.plugins()
Regards Stéfan
participants (2)
-
Chris Colbert
-
Stéfan van der Walt