mirror of
https://github.com/opencv/opencv.git
synced 2026-07-31 08:13:04 +04:00
python tutorials: removed remainders of former Algorithm interface
This commit is contained in:
@@ -108,15 +108,15 @@ kp = fast.detect(img,None)
|
||||
img2 = cv2.drawKeypoints(img, kp, None, color=(255,0,0))
|
||||
|
||||
# Print all default params
|
||||
print "Threshold: ", fast.getInt('threshold')
|
||||
print "nonmaxSuppression: ", fast.getBool('nonmaxSuppression')
|
||||
print "neighborhood: ", fast.getInt('type')
|
||||
print "Threshold: ", fast.getThreshold()
|
||||
print "nonmaxSuppression: ", fast.getNonmaxSuppression()
|
||||
print "neighborhood: ", fast.getType()
|
||||
print "Total Keypoints with nonmaxSuppression: ", len(kp)
|
||||
|
||||
cv2.imwrite('fast_true.png',img2)
|
||||
|
||||
# Disable nonmaxSuppression
|
||||
fast.setBool('nonmaxSuppression',0)
|
||||
fast.setNonmaxSuppression(0)
|
||||
kp = fast.detect(img,None)
|
||||
|
||||
print "Total Keypoints without nonmaxSuppression: ", len(kp)
|
||||
|
||||
Reference in New Issue
Block a user