We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fc8488 commit fc60534Copy full SHA for fc60534
examples/computer_vision/susan.py
@@ -59,7 +59,8 @@ def susan_demo(console):
59
x = xs[f]
60
y = ys[f]
61
62
- img_color = draw_corners(img_color, x, y, draw_len)
+ # TODO fix coord order to x,y after upstream fix
63
+ img_color = draw_corners(img_color, y, x, draw_len)
64
65
66
print("Features found: {}".format(num_features))
0 commit comments