From d1b0434d3da0d78d31be46d7e116d34b14211a96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Boulogne?= Date: Sat, 15 Feb 2014 10:11:14 -0500 Subject: [PATCH] DOC: remove deprecated paramter --- doc/examples/plot_label.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/examples/plot_label.py b/doc/examples/plot_label.py index 0542d68c..6e5773dd 100644 --- a/doc/examples/plot_label.py +++ b/doc/examples/plot_label.py @@ -43,7 +43,7 @@ image_label_overlay = label2rgb(label_image, image=image) fig, ax = plt.subplots(ncols=1, nrows=1, figsize=(6, 6)) ax.imshow(image_label_overlay) -for region in regionprops(label_image, ['Area', 'BoundingBox']): +for region in regionprops(label_image): # skip small images if region['Area'] < 100: