From 8059f43671ad7fa54a9c743ac6b0a974efe22604 Mon Sep 17 00:00:00 2001 From: Ralf Gommers Date: Fri, 9 Oct 2009 19:28:28 +0200 Subject: [PATCH] Add MultiImg to __all__. --- scikits/image/io/io.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/scikits/image/io/io.py b/scikits/image/io/io.py index 783f5699..ffec2518 100644 --- a/scikits/image/io/io.py +++ b/scikits/image/io/io.py @@ -2,7 +2,7 @@ from __future__ import with_statement -__all__ = ['Img', 'ImgCollection', 'imread'] +__all__ = ['Img', 'MultiImg', 'ImgCollection', 'imread'] from glob import glob import os.path @@ -116,7 +116,6 @@ class MultiImg(object): (576, 384) (576, 384) """ - def __init__(self, filename, conserve_memory=True): """Load a multi-img""" self.filename = filename @@ -146,7 +145,6 @@ class MultiImg(object): img.seek(framenum) return np.asarray(img) - def _getallframes(self, img): """Extract all frames from the multi-img.""" frames = []