From 20d81529f4a874ab18fca4fb18848609cad7d5ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Sch=C3=B6nberger?= Date: Tue, 23 Dec 2014 12:40:15 +0100 Subject: [PATCH] Fix matching test cases --- skimage/feature/tests/test_match.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skimage/feature/tests/test_match.py b/skimage/feature/tests/test_match.py index 1b0a622f..695116ed 100644 --- a/skimage/feature/tests/test_match.py +++ b/skimage/feature/tests/test_match.py @@ -32,7 +32,7 @@ def test_binary_descriptors_lena_rotation_crosscheck_false(): img = data.lena() img = rgb2gray(img) tform = tf.SimilarityTransform(scale=1, rotation=0.15, translation=(0, 0)) - rotated_img = tf.warp(img, tform) + rotated_img = tf.warp(img, tform, clip=False) extractor = BRIEF(descriptor_size=512) @@ -65,7 +65,7 @@ def test_binary_descriptors_lena_rotation_crosscheck_true(): img = data.lena() img = rgb2gray(img) tform = tf.SimilarityTransform(scale=1, rotation=0.15, translation=(0, 0)) - rotated_img = tf.warp(img, tform) + rotated_img = tf.warp(img, tform, clip=False) extractor = BRIEF(descriptor_size=512)