Spaces:
Running
Running
Realcat
commited on
Commit
·
895bbe1
1
Parent(s):
b4c96f3
update: config
Browse files- config/config.yaml +36 -3
config/config.yaml
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
server:
|
2 |
name: "0.0.0.0"
|
3 |
-
port:
|
4 |
|
5 |
defaults:
|
6 |
setting_threshold: 0.1
|
@@ -9,13 +9,40 @@ defaults:
|
|
9 |
enable_ransac: true
|
10 |
ransac_method: CV2_USAC_MAGSAC
|
11 |
ransac_reproj_threshold: 8
|
12 |
-
ransac_confidence: 0.
|
13 |
ransac_max_iter: 10000
|
14 |
ransac_num_samples: 4
|
15 |
match_threshold: 0.2
|
16 |
setting_geometry: Homography
|
17 |
|
18 |
matcher_zoo:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
minima(loftr):
|
20 |
matcher: minima_loftr
|
21 |
dense: true
|
@@ -23,7 +50,7 @@ matcher_zoo:
|
|
23 |
name: MINIMA(LoFTR) #dispaly name
|
24 |
source: "ARXIV 2024"
|
25 |
paper: https://arxiv.org/abs/2412.19412
|
26 |
-
display:
|
27 |
minima(RoMa):
|
28 |
matcher: minima_roma
|
29 |
skip_ci: true
|
@@ -33,6 +60,7 @@ matcher_zoo:
|
|
33 |
source: "ARXIV 2024"
|
34 |
paper: https://arxiv.org/abs/2412.19412
|
35 |
display: false
|
|
|
36 |
omniglue:
|
37 |
enable: true
|
38 |
matcher: omniglue
|
@@ -55,6 +83,7 @@ matcher_zoo:
|
|
55 |
paper: https://arxiv.org/abs/2406.09756
|
56 |
project: https://dust3r.europe.naverlabs.com
|
57 |
display: true
|
|
|
58 |
DUSt3R:
|
59 |
# TODO: duster is under development
|
60 |
enable: true
|
@@ -80,6 +109,7 @@ matcher_zoo:
|
|
80 |
paper: https://arxiv.org/abs/2402.11095
|
81 |
project: https://xuelunshen.com/gim
|
82 |
display: true
|
|
|
83 |
RoMa:
|
84 |
matcher: roma
|
85 |
skip_ci: true
|
@@ -91,6 +121,7 @@ matcher_zoo:
|
|
91 |
paper: https://arxiv.org/abs/2305.15404
|
92 |
project: https://parskatt.github.io/RoMa
|
93 |
display: true
|
|
|
94 |
dkm:
|
95 |
matcher: dkm
|
96 |
skip_ci: true
|
@@ -102,6 +133,7 @@ matcher_zoo:
|
|
102 |
paper: https://arxiv.org/abs/2202.00667
|
103 |
project: https://parskatt.github.io/DKM
|
104 |
display: true
|
|
|
105 |
loftr:
|
106 |
matcher: loftr
|
107 |
dense: true
|
@@ -144,6 +176,7 @@ matcher_zoo:
|
|
144 |
paper: https://arxiv.org/abs/2103.14167
|
145 |
project: null
|
146 |
display: true
|
|
|
147 |
topicfm:
|
148 |
matcher: topicfm
|
149 |
dense: true
|
|
|
1 |
server:
|
2 |
name: "0.0.0.0"
|
3 |
+
port: 7860
|
4 |
|
5 |
defaults:
|
6 |
setting_threshold: 0.1
|
|
|
9 |
enable_ransac: true
|
10 |
ransac_method: CV2_USAC_MAGSAC
|
11 |
ransac_reproj_threshold: 8
|
12 |
+
ransac_confidence: 0.9999
|
13 |
ransac_max_iter: 10000
|
14 |
ransac_num_samples: 4
|
15 |
match_threshold: 0.2
|
16 |
setting_geometry: Homography
|
17 |
|
18 |
matcher_zoo:
|
19 |
+
# example config
|
20 |
+
Example:
|
21 |
+
# show in `Matching Model` or not, default: true
|
22 |
+
enable: false
|
23 |
+
# matcher name
|
24 |
+
matcher: example
|
25 |
+
# skip ci or not, default: false
|
26 |
+
skip_ci: true
|
27 |
+
# dense matcher or not, default: true
|
28 |
+
dense: true
|
29 |
+
# info
|
30 |
+
info:
|
31 |
+
# dispaly name in `Matching Model`
|
32 |
+
name: example(example)
|
33 |
+
# conference/journal/workshop Year
|
34 |
+
source: "CVPR XXXX"
|
35 |
+
# github link
|
36 |
+
github: https://github.com/example/example
|
37 |
+
# paper link
|
38 |
+
paper: https://arxiv.org/abs/xxxx.xxxx
|
39 |
+
# project link
|
40 |
+
project: https://example.com
|
41 |
+
# show in `support algos` table
|
42 |
+
display: false
|
43 |
+
# low, medium, high
|
44 |
+
efficiency: low
|
45 |
+
|
46 |
minima(loftr):
|
47 |
matcher: minima_loftr
|
48 |
dense: true
|
|
|
50 |
name: MINIMA(LoFTR) #dispaly name
|
51 |
source: "ARXIV 2024"
|
52 |
paper: https://arxiv.org/abs/2412.19412
|
53 |
+
display: true
|
54 |
minima(RoMa):
|
55 |
matcher: minima_roma
|
56 |
skip_ci: true
|
|
|
60 |
source: "ARXIV 2024"
|
61 |
paper: https://arxiv.org/abs/2412.19412
|
62 |
display: false
|
63 |
+
efficiency: low # low, medium, high
|
64 |
omniglue:
|
65 |
enable: true
|
66 |
matcher: omniglue
|
|
|
83 |
paper: https://arxiv.org/abs/2406.09756
|
84 |
project: https://dust3r.europe.naverlabs.com
|
85 |
display: true
|
86 |
+
efficiency: low # low, medium, high
|
87 |
DUSt3R:
|
88 |
# TODO: duster is under development
|
89 |
enable: true
|
|
|
109 |
paper: https://arxiv.org/abs/2402.11095
|
110 |
project: https://xuelunshen.com/gim
|
111 |
display: true
|
112 |
+
efficiency: low # low, medium, high
|
113 |
RoMa:
|
114 |
matcher: roma
|
115 |
skip_ci: true
|
|
|
121 |
paper: https://arxiv.org/abs/2305.15404
|
122 |
project: https://parskatt.github.io/RoMa
|
123 |
display: true
|
124 |
+
efficiency: low # low, medium, high
|
125 |
dkm:
|
126 |
matcher: dkm
|
127 |
skip_ci: true
|
|
|
133 |
paper: https://arxiv.org/abs/2202.00667
|
134 |
project: https://parskatt.github.io/DKM
|
135 |
display: true
|
136 |
+
efficiency: low # low, medium, high
|
137 |
loftr:
|
138 |
matcher: loftr
|
139 |
dense: true
|
|
|
176 |
paper: https://arxiv.org/abs/2103.14167
|
177 |
project: null
|
178 |
display: true
|
179 |
+
efficiency: low # low, medium, high
|
180 |
topicfm:
|
181 |
matcher: topicfm
|
182 |
dense: true
|