Skip to content

Commit 84a3f1b

Browse files
committed
Workaround in susan example for swapped coordinates of features
I believe this has to be fixed from upstream and then later fixed here. Added a TODO inside the example for the same
1 parent 0a1b318 commit 84a3f1b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: examples/computer_vision/susan.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ def susan_demo(console):
5959
x = xs[f]
6060
y = ys[f]
6161

62-
img_color = draw_corners(img_color, x, y, draw_len)
62+
# TODO fix coord order to x,y after upstream fix
63+
img_color = draw_corners(img_color, y, x, draw_len)
6364

6465

6566
print("Features found: {}".format(num_features))

0 commit comments

Comments
 (0)