From 9f6cbb507e0d98d972515b9011c193d954eeb2e8 Mon Sep 17 00:00:00 2001 From: Vadim Pisarevsky Date: Tue, 21 Jun 2011 12:07:16 +0000 Subject: [PATCH] fixed path to the test image in precornerdetect test --- 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 d944269606..e8d592c5f6 100644 --- a/modules/python/test/test.py +++ b/modules/python/test/test.py @@ -2108,7 +2108,7 @@ class DocumentFragmentTests(OpenCVTests): def test_precornerdetect(self): from precornerdetect import precornerdetect - im = self.get_sample("samples/c/right01.jpg", 0) + im = self.get_sample("samples/cpp/right01.jpg", 0) imf = cv.CreateMat(im.rows, im.cols, cv.CV_32FC1) cv.ConvertScale(im, imf) (r0,r1) = precornerdetect(imf)