Commit 0cd6c490b9f8002e84f1aadd29e0fa469eeaab02

Authored by Thiago Franco de Moraes
1 parent 723af25d

Remove unused imports

invesalius/data/styles.py
... ... @@ -41,7 +41,6 @@ from scipy import ndimage
41 41 from scipy.misc import imsave
42 42 from scipy.ndimage import watershed_ift, generate_binary_structure
43 43 from skimage.morphology import watershed
44   -from skimage import filter
45 44  
46 45 import invesalius.gui.dialogs as dialogs
47 46 from invesalius.data.measures import MeasureData
... ...
invesalius/data/watershed_process.py
... ... @@ -2,8 +2,6 @@ import numpy as np
2 2 from scipy import ndimage
3 3 from scipy.ndimage import watershed_ift, generate_binary_structure
4 4 from skimage.morphology import watershed
5   -from skimage import filter
6   -
7 5  
8 6 def get_LUT_value(data, window, level):
9 7 shape = data.shape
... ...