From 80555a2bdbf01d229cf0704dcb817ae14c5eb6fe Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Fri, 20 Mar 2015 19:14:25 -0500 Subject: [PATCH] Add a note to the docstring --- skimage/io/collection.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/skimage/io/collection.py b/skimage/io/collection.py index 838a9f90..e8cc0656 100644 --- a/skimage/io/collection.py +++ b/skimage/io/collection.py @@ -135,7 +135,8 @@ class ImageCollection(object): ic = ImageCollection('/tmp/*.png', load_func=imread_convert) For files with multiple images, the images will be flattened into a list - and added to the list of available images. + and added to the list of available images. In this case, ``load_func`` + should accept the keyword argument ``img_num``. Examples --------