Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
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
234
def
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
run
Method · 0.90
Calls
no outgoing calls
Tested by
no test coverage detected