Skip to content

Commit

Permalink
Removed small type error
Browse files Browse the repository at this point in the history
Removed the error AN INTEGER IS REQUIRED, GOT TYPE TUPLE in cv2.resize ("SuperGlue matches", width, height)
  • Loading branch information
kanishkanarch authored Aug 8, 2021
1 parent c0626d5 commit 35e2e87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demo_superglue.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@
# Create a window to display the demo.
if not opt.no_display:
cv2.namedWindow('SuperGlue matches', cv2.WINDOW_NORMAL)
cv2.resizeWindow('SuperGlue matches', (640*2, 480))
cv2.resizeWindow('SuperGlue matches', 640*2, 480)
else:
print('Skipping visualization, will not show a GUI.')

Expand Down

0 comments on commit 35e2e87

Please sign in to comment.