Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ducha-aiki committed Sep 26, 2023
1 parent 1a243ee commit d5fef0a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion kornia_moons/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.7"
__version__ = "0.2.9dev"
3 changes: 2 additions & 1 deletion kornia_moons/viz.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,8 @@ def draw_LAF_matches(lafs1, lafs2, tent_idxs,
ax.plot(x1, y1, color=fc)
ax.plot(x2, y2, color=fc)

#Drawgin tentatives
tent_corrs = tent_corrs.detach().cpu().numpy()
#Drawing tentatives
try:
tc = draw_dict['tentative_color']
except:
Expand Down
2 changes: 1 addition & 1 deletion settings.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

### Python Library ###
lib_name = kornia_moons
version = 0.2.9dev
version = 0.2.9
min_python = 3.7

### nbdev ###
Expand Down

0 comments on commit d5fef0a

Please sign in to comment.