From 80a985c89439739375e42f937087246da6274558 Mon Sep 17 00:00:00 2001 From: Vadim Pisarevsky Date: Fri, 7 Nov 2014 15:57:42 +0300 Subject: [PATCH] fixed path to the checkerboard image --- modules/python/test/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/python/test/test.py b/modules/python/test/test.py index e4edc88b5a..cb923ce68b 100644 --- a/modules/python/test/test.py +++ b/modules/python/test/test.py @@ -92,7 +92,7 @@ class Hackathon244Tests(NewOpenCVTests): def test_fast(self): fd = cv2.FastFeatureDetector_create(30, True) - img = self.get_sample("samples/cpp/right02.jpg", 0) + img = self.get_sample("samples/data/right02.jpg", 0) img = cv2.medianBlur(img, 3) imgc = cv2.cvtColor(img, cv2.COLOR_GRAY2BGR) keypoints = fd.detect(img)