docs: fix image path for py_fast doc

pull/20657/head
Zhuo Zhang 4 years ago
parent d11f0a709d
commit 36cc43170d
No known key found for this signature in database
GPG Key ID: 961A0300B14A36D
  1. 8
      doc/py_tutorials/py_feature2d/py_fast/py_fast.markdown

@ -98,7 +98,7 @@ import numpy as np
import cv2 as cv import cv2 as cv
from matplotlib import pyplot as plt from matplotlib import pyplot as plt
img = cv.imread('simple.jpg',0) img = cv.imread('blox.jpg',0) # `<opencv_root>/samples/data/blox.jpg`
# Initiate FAST object with default values # Initiate FAST object with default values
fast = cv.FastFeatureDetector_create() fast = cv.FastFeatureDetector_create()
@ -113,17 +113,17 @@ print( "nonmaxSuppression:{}".format(fast.getNonmaxSuppression()) )
print( "neighborhood: {}".format(fast.getType()) ) print( "neighborhood: {}".format(fast.getType()) )
print( "Total Keypoints with nonmaxSuppression: {}".format(len(kp)) ) print( "Total Keypoints with nonmaxSuppression: {}".format(len(kp)) )
cv.imwrite('fast_true.png',img2) cv.imwrite('fast_true.png', img2)
# Disable nonmaxSuppression # Disable nonmaxSuppression
fast.setNonmaxSuppression(0) fast.setNonmaxSuppression(0)
kp = fast.detect(img,None) kp = fast.detect(img, None)
print( "Total Keypoints without nonmaxSuppression: {}".format(len(kp)) ) print( "Total Keypoints without nonmaxSuppression: {}".format(len(kp)) )
img3 = cv.drawKeypoints(img, kp, None, color=(255,0,0)) img3 = cv.drawKeypoints(img, kp, None, color=(255,0,0))
cv.imwrite('fast_false.png',img3) cv.imwrite('fast_false.png', img3)
@endcode @endcode
See the results. First image shows FAST with nonmaxSuppression and second one without See the results. First image shows FAST with nonmaxSuppression and second one without
nonmaxSuppression: nonmaxSuppression:

Loading…
Cancel
Save