MCPcopy Index your code
hub / github.com/makelove/OpenCV-Python-Tutorial / draw_keypoints

Function draw_keypoints

官方samples/common.py:234–237  ·  view source on GitHub ↗
(vis, keypoints, color = (0, 255, 255))

Source from the content-addressed store, hash-verified

232 return reduce(np.dot, args)
233
234def draw_keypoints(vis, keypoints, color = (0, 255, 255)):
235 for kp in keypoints:
236 x, y = kp.pt
237 cv2.circle(vis, (int(x), int(y)), 2, color)

Callers 1

runMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected