Commit 80a985c8 authored by Vadim Pisarevsky's avatar Vadim Pisarevsky

fixed path to the checkerboard image

parent 5044e0f5
...@@ -92,7 +92,7 @@ class Hackathon244Tests(NewOpenCVTests): ...@@ -92,7 +92,7 @@ class Hackathon244Tests(NewOpenCVTests):
def test_fast(self): def test_fast(self):
fd = cv2.FastFeatureDetector_create(30, True) 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) img = cv2.medianBlur(img, 3)
imgc = cv2.cvtColor(img, cv2.COLOR_GRAY2BGR) imgc = cv2.cvtColor(img, cv2.COLOR_GRAY2BGR)
keypoints = fd.detect(img) keypoints = fd.detect(img)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment