From c41376c60e5ba03054e0674788b583ade230f3c4 Mon Sep 17 00:00:00 2001 From: Himanshu Mishra Date: Thu, 21 Jan 2016 23:36:30 +0530 Subject: [PATCH] Remove test_otsu_lena_image --- skimage/filters/tests/test_thresholding.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/skimage/filters/tests/test_thresholding.py b/skimage/filters/tests/test_thresholding.py index fdcbf34b..16682610 100644 --- a/skimage/filters/tests/test_thresholding.py +++ b/skimage/filters/tests/test_thresholding.py @@ -157,11 +157,6 @@ def test_otsu_coins_image_as_float(): assert 0.41 < threshold_otsu(coins) < 0.42 -def test_otsu_lena_image(): - img = skimage.img_as_ubyte(data.lena()) - with expected_warnings(['grayscale']): - assert 140 < threshold_otsu(img) < 142 - def test_otsu_astro_image(): img = skimage.img_as_ubyte(data.astronaut()) with expected_warnings(['grayscale']):