forked from 3DOM-FBK/deep-image-matching
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
new file: config/aliked+lightglue.yaml
new file: config/disk+lightglue.yaml new file: config/keynet+kornia_matcher.yaml modified: config/superpoint+lightglue.yaml modified: config/superpoint+superglue.yaml modified: src/deep_image_matching/config.py
- Loading branch information
1 parent
0534d61
commit 84a7546
Showing
6 changed files
with
64 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# User configuration file | ||
|
||
general: | ||
tile_size: (2400, 2000) | ||
geom_verification: pydegensac | ||
gv_threshold: 1 | ||
min_inliers_per_pair: 10 | ||
min_inlier_ratio_per_pair: 0.25 | ||
|
||
extractor: | ||
name: "aliked" | ||
max_num_keypoints: 8000 | ||
detection_threshold: 0.2 | ||
nms_radius: 3 | ||
|
||
matcher: | ||
name: "lightglue" | ||
flash: True # enable FlashAttention if available | ||
mp: False # enable mixed precision | ||
depth_confidence: 0.95 # early stopping, disable with -1 | ||
width_confidence: 0.99 # point pruning, disable with -1 | ||
filter_threshold: 0.10 # match threshold |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# User configuration file | ||
|
||
general: | ||
tile_size: (2400, 2000) | ||
geom_verification: pydegensac | ||
gv_threshold: 1 | ||
min_inliers_per_pair: 10 | ||
min_inlier_ratio_per_pair: 0.25 | ||
|
||
extractor: | ||
name: "disk" | ||
max_keypoints: 8000 | ||
|
||
matcher: | ||
name: "lightglue" | ||
flash: True # enable FlashAttention if available | ||
mp: False # enable mixed precision | ||
depth_confidence: 0.95 # early stopping, disable with -1 | ||
width_confidence: 0.99 # point pruning, disable with -1 | ||
filter_threshold: 0.10 # match threshold |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# User configuration file | ||
|
||
general: | ||
tile_size: (2400, 2000) | ||
geom_verification: pydegensac | ||
gv_threshold: 1 | ||
min_inliers_per_pair: 10 | ||
min_inlier_ratio_per_pair: 0.25 | ||
|
||
extractor: | ||
name: "keynetaffnethardnet" | ||
n_features: 8000 | ||
upright: False | ||
|
||
matcher: | ||
name: "kornia_matcher" | ||
match_mode: "smnn" | ||
th: 0.95 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters