diff --git a/modules/python/test/test_feature_homography.py b/modules/python/test/test_feature_homography.py index 280945e98ba0146c38af4e8a92fe028acb043bd5..f4170338834cd09564eefe758163c4d34816b54b 100644 --- a/modules/python/test/test_feature_homography.py +++ b/modules/python/test/test_feature_homography.py @@ -43,7 +43,7 @@ class feature_homography_test(NewOpenCVTests): def test_feature_homography(self): self.render = TestSceneRender(self.get_sample('samples/data/graf1.png'), - self.get_sample('samples/data/box.png'), noise = 0.5, speed = 0.5) + self.get_sample('samples/data/box.png'), noise = 0.4, speed = 0.5) self.frame = self.render.getNextFrame() self.tracker = PlaneTracker() self.tracker.clear() diff --git a/modules/python/test/test_mser.py b/modules/python/test/test_mser.py index dfdb30a8ed0fee4fdd74d40765f4844735b47b0e..47c7db196fc96577e945bed1ff3a44f5710d80eb 100644 --- a/modules/python/test/test_mser.py +++ b/modules/python/test/test_mser.py @@ -40,7 +40,7 @@ class mser_test(NewOpenCVTests): use_big_image = int(np.random.rand(1,1)*7) != 0 invert = int(np.random.rand(1,1)*2) != 0 binarize = int(np.random.rand(1,1)*5) != 0 if use_big_image else False - blur = int(np.random.rand(1,1)*2) != 0 + blur = True #int(np.random.rand(1,1)*2) != 0 #binarized images are processed incorrectly thresh = thresharr[int(np.random.rand(1,1)*5)] src0 = img if use_big_image else np.array(smallImg).astype('uint8') src = src0.copy()