From 3c33965b99a83a7e8c5586167f110ee34206984d Mon Sep 17 00:00:00 2001 From: Tony S Yu Date: Sat, 28 Sep 2013 17:19:34 -0500 Subject: [PATCH] Add docstring for arrays --- skimage/novice/_novice.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/skimage/novice/_novice.py b/skimage/novice/_novice.py index d058a708..5cdf1c96 100644 --- a/skimage/novice/_novice.py +++ b/skimage/novice/_novice.py @@ -250,6 +250,7 @@ class Picture(object): @property def array(self): + """Image data stored as numpy array.""" return self._array @array.setter @@ -259,6 +260,7 @@ class Picture(object): @property def xy_array(self): + """Image data stored as numpy array with origin at the bottom-left.""" return self._xy_array @xy_array.setter