DOC: remove deprecated paramter

This commit is contained in:
François Boulogne
2014-02-15 10:11:14 -05:00
parent f6b1c015ea
commit d1b0434d3d
+1 -1
View File
@@ -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: