From 654642c986e664e21bc2a71f406ff0f1217349d1 Mon Sep 17 00:00:00 2001 From: Neeraj Gangwar Date: Tue, 11 Mar 2014 22:35:07 +0530 Subject: [PATCH] changed test url in example for the Picture(object) --- skimage/novice/_novice.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/skimage/novice/_novice.py b/skimage/novice/_novice.py index f3cce638..eec1941a 100644 --- a/skimage/novice/_novice.py +++ b/skimage/novice/_novice.py @@ -181,8 +181,7 @@ class Picture(object): >>> from skimage import novice >>> from skimage import data >>> picture = novice.open(data.data_dir + '/chelsea.png') - >>> picture = novice.open('http://static3.businessinsider.com/image/ - 52a0bbfd6bb3f7961363819e/the-most-amazing-satellite-images-of-the-year.jpg') + >>> picture = novice.open('http://scikit-image.org/_static/img/logo.png') Create a blank 100 pixel wide, 200 pixel tall white image >>> pic = Picture.from_size((100, 200), color=(255, 255, 255))