Add MultiImg to __all__.

This commit is contained in:
Ralf Gommers
2009-10-09 19:28:28 +02:00
parent 52f10ea293
commit 8059f43671
+1 -3
View File
@@ -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 = []