Merge pull request #120 from stefanv/scivi_rename

PKG: Rename scivi to skivi.
This commit is contained in:
tonysyu
2012-02-05 19:39:51 -08:00
7 changed files with 17 additions and 17 deletions
+2 -2
View File
@@ -134,8 +134,8 @@ def imshow(arr, fancy=False):
if not fancy:
iw = ImageWindow(arr, window_manager)
else:
from scivi import SciviImageWindow
iw = SciviImageWindow(arr, window_manager)
from skivi import SkiviImageWindow
iw = SkiviImageWindow(arr, window_manager)
iw.show()
@@ -1,15 +1,15 @@
'''
Scivi is written/maintained/developed by:
Skivi is written/maintained/developed by:
S. Chris Colbert - sccolbert@gmail.com
Scivi is free software and is part of the scikits-image project.
Skivi is free software and is part of the scikits-image project.
Scivi is governed by the licenses of the scikits-image project.
Skivi is governed by the licenses of the scikits-image project.
Please report any bugs to the author.
The scivi module is not meant to be used directly.
The skivi module is not meant to be used directly.
Use skimage.io.imshow(img, fancy=True)'''
@@ -119,7 +119,7 @@ class RGBHSVDisplay(QFrame):
class SciviImageWindow(QMainWindow):
class SkiviImageWindow(QMainWindow):
def __init__(self, arr, mgr):
QMainWindow.__init__(self)
@@ -143,7 +143,7 @@ class SciviImageWindow(QMainWindow):
self.mgr.add_window(self)
self.main_widget.show()
self.setWindowTitle('Scivi - The skimage viewer.')
self.setWindowTitle('Skivi - The skimage viewer.')
self.mixer_panel = MixerPanel(self.arr)
self.layout.addWidget(self.mixer_panel, 0, 2)