From 9bd445700a059b5b861f10d7ff78a2cf0bd0ed75 Mon Sep 17 00:00:00 2001 From: wilsaj Date: Sun, 12 Aug 2012 18:20:58 -0500 Subject: [PATCH] add note about to display protocol to Image docstring --- skimage/io/_io.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/skimage/io/_io.py b/skimage/io/_io.py index 95cb5abc..20337797 100644 --- a/skimage/io/_io.py +++ b/skimage/io/_io.py @@ -16,7 +16,11 @@ _image_stack = [] class Image(np.ndarray): - """Image data with tags.""" + """Class representing Image data. + + These objects have tags for image metadata and IPython display protocol + methods for image display. + """ tags = {'filename': '', 'EXIF': {},