Renamed scikits.image to skimage

This commit is contained in:
Nelle Varoquaux
2011-10-18 21:12:27 +02:00
parent b25011514b
commit 114cf44c77
159 changed files with 130 additions and 130 deletions
View File
+6
View File
@@ -0,0 +1,6 @@
#!/usr/bin/env python
if __name__ == "__main__":
from skimage.scripts import scivi
scivi.main()
+13
View File
@@ -0,0 +1,13 @@
"""skimage viewer"""
def main():
import skimage.io as io
import sys
if len(sys.argv) != 2:
print "Usage: scivi <image-file>"
sys.exit(-1)
io.use_plugin('qt')
io.imshow(io.imread(sys.argv[1]), fancy=True)
io.show()