1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-31 08:13:04 +04:00

python docs: fix missing output image in cv2.drawKeypoint examples

This commit is contained in:
berak
2016-08-07 15:59:11 +02:00
parent 52444bf8d0
commit d2a1994d71
3 changed files with 6 additions and 6 deletions
@@ -79,8 +79,8 @@ kp = orb.detect(img,None)
kp, des = orb.compute(img, kp)
# draw only keypoints location,not size and orientation
img2 = cv2.drawKeypoints(img,kp,color=(0,255,0), flags=0)
plt.imshow(img2),plt.show()
img2 = cv2.drawKeypoints(img, kp, None, color=(0,255,0), flags=0)
plt.imshow(img2), plt.show()
@endcode
See the result below: