Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit fc60534

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 6fc8488 commit fc60534

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

‎examples/computer_vision/susan.py‎

Lines changed: 2 additions & 1 deletion
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)

AltStyle によって変換されたページ (->オリジナル) /