Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds DoG-HardNet model #103

Merged
merged 14 commits into from
Jan 23, 2024
Prev Previous commit
Next Next commit
omg, really?
  • Loading branch information
ducha-aiki committed Jan 15, 2024
commit 37704d58c7e7f5a205d97eef4286cb44c3de42e5
3 changes: 2 additions & 1 deletion lightglue/dog_hardnet.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
import numpy as np
import torch
from kornia.color import rgb_to_grayscale
from kornia.feature import laf_from_center_scale_ori, LAFDescriptor, HardNet
from kornia.feature import HardNet, LAFDescriptor, laf_from_center_scale_ori
from packaging import version

from .utils import Extractor

try:
Expand Down
Loading