Use relative imports in skimage files

This commit is contained in:
Johannes Schönberger
2015-01-22 07:36:48 -05:00
parent ea95b5419b
commit ee5c6fbeb2
67 changed files with 149 additions and 155 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
__all__ = ['imread', 'imsave']
from skimage.util.dtype import convert
from ...util.dtype import convert
try:
import imread as _imread
@@ -33,7 +33,7 @@ def imsave(fname, arr, format_str=None):
arr : ndarray of uint8 or uint16
Array (image) to save.
format_str: str,optional
Format to save as.
Format to save as.
Notes
-----