-
Notifications
You must be signed in to change notification settings - Fork 336
/
feature_tracker_configs.py
405 lines (355 loc) · 22.1 KB
/
feature_tracker_configs.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
"""
* This file is part of PYSLAM
*
* Copyright (C) 2016-present Luigi Freda <luigi dot freda at gmail dot com>
*
* PYSLAM is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* PYSLAM is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with PYSLAM. If not, see <http://www.gnu.org/licenses/>.
"""
from feature_tracker import feature_tracker_factory, FeatureTrackerTypes
from feature_manager import feature_manager_factory
from feature_types import FeatureDetectorTypes, FeatureDescriptorTypes, FeatureInfo
from feature_matcher import FeatureMatcherTypes
from parameters import Parameters
# some default parameters
kNumFeatures=Parameters.kNumFeatures
kRatioTest=Parameters.kFeatureMatchRatioTest
kTrackerType = FeatureTrackerTypes.DES_BF # default descriptor-based, brute force matching with knn
#kTrackerType = FeatureTrackerTypes.DES_FLANN # default descriptor-based, FLANN-based matching
"""
A collection of ready-to-used feature tracker configurations
"""
class FeatureTrackerConfigs(object):
# Test/Template configuration: you can use this to quickly test
# - your custom parameters and
# - favourite descriptor and detector (check the file feature_types.py)
TEST = dict(num_features=kNumFeatures,
num_levels = 8, # N.B: some detectors/descriptors do not allow to set num_levels or they set it on their own
scale_factor = 1.2, # N.B: some detectors/descriptors do not allow to set scale_factor or they set it on their own
sigma_level0 = Parameters.kSigmaLevel0,
detector_type = FeatureDetectorTypes.ORB2,
descriptor_type = FeatureDescriptorTypes.ORB2,
match_ratio_test = kRatioTest,
tracker_type = kTrackerType)
# =====================================
# LK trackers (these can only be used with VisualOdometry() ... at the present time)
LK_SHI_TOMASI = dict(num_features=kNumFeatures,
num_levels = 3,
detector_type = FeatureDetectorTypes.SHI_TOMASI,
descriptor_type = FeatureDescriptorTypes.NONE,
sigma_level0 = Parameters.kSigmaLevel0,
tracker_type = FeatureTrackerTypes.LK)
LK_FAST = dict(num_features=kNumFeatures,
num_levels = 3,
detector_type = FeatureDetectorTypes.FAST,
descriptor_type = FeatureDescriptorTypes.NONE,
sigma_level0 = Parameters.kSigmaLevel0,
tracker_type = FeatureTrackerTypes.LK)
# =====================================
# Descriptor-based 'trackers'
SHI_TOMASI_ORB = dict(num_features=kNumFeatures, # N.B.: here, keypoints are not oriented! (i.e. keypoint.angle=0 always)
num_levels = 8,
scale_factor = 1.2,
detector_type = FeatureDetectorTypes.SHI_TOMASI,
descriptor_type = FeatureDescriptorTypes.ORB,
sigma_level0 = Parameters.kSigmaLevel0,
match_ratio_test = kRatioTest,
tracker_type = kTrackerType)
SHI_TOMASI_FREAK = dict(num_features=kNumFeatures,
num_levels=8,
scale_factor = 1.2,
detector_type = FeatureDetectorTypes.SHI_TOMASI,
descriptor_type = FeatureDescriptorTypes.FREAK,
sigma_level0 = Parameters.kSigmaLevel0,
match_ratio_test = kRatioTest,
tracker_type = kTrackerType)
FAST_ORB = dict(num_features=kNumFeatures, # N.B.: here, keypoints are not oriented! (i.e. keypoint.angle=0 always)
num_levels = 8,
scale_factor = 1.2,
detector_type = FeatureDetectorTypes.FAST,
descriptor_type = FeatureDescriptorTypes.ORB,
sigma_level0 = Parameters.kSigmaLevel0,
match_ratio_test = kRatioTest,
tracker_type = kTrackerType)
FAST_FREAK = dict(num_features=kNumFeatures,
num_levels = 8,
scale_factor = 1.2,
detector_type = FeatureDetectorTypes.FAST,
descriptor_type = FeatureDescriptorTypes.FREAK,
sigma_level0 = Parameters.kSigmaLevel0,
match_ratio_test = kRatioTest,
tracker_type = kTrackerType)
BRISK = dict(num_features=kNumFeatures,
num_levels = 4,
scale_factor = 1.2,
detector_type = FeatureDetectorTypes.BRISK,
descriptor_type = FeatureDescriptorTypes.BRISK,
sigma_level0 = Parameters.kSigmaLevel0,
match_ratio_test = kRatioTest,
tracker_type = kTrackerType)
BRISK_TFEAT = dict(num_features=kNumFeatures,
num_levels = 4,
scale_factor = 1.2,
detector_type = FeatureDetectorTypes.BRISK,
descriptor_type = FeatureDescriptorTypes.TFEAT,
sigma_level0 = Parameters.kSigmaLevel0,
match_ratio_test = kRatioTest,
tracker_type = kTrackerType)
ORB = dict(num_features=kNumFeatures,
num_levels = 8,
scale_factor = 1.2,
detector_type = FeatureDetectorTypes.ORB,
descriptor_type = FeatureDescriptorTypes.ORB,
sigma_level0 = Parameters.kSigmaLevel0,
match_ratio_test = kRatioTest,
tracker_type = kTrackerType)
ORB2 = dict(num_features=kNumFeatures,
num_levels = 8,
scale_factor = 1.2,
detector_type = FeatureDetectorTypes.ORB2,
descriptor_type = FeatureDescriptorTypes.ORB2,
sigma_level0 = Parameters.kSigmaLevel0,
match_ratio_test = kRatioTest,
tracker_type = kTrackerType)
BRISK = dict(num_features=kNumFeatures,
num_levels = 8,
detector_type = FeatureDetectorTypes.BRISK,
descriptor_type = FeatureDescriptorTypes.BRISK,
sigma_level0 = Parameters.kSigmaLevel0,
match_ratio_test = kRatioTest,
tracker_type = kTrackerType)
KAZE = dict(num_features=kNumFeatures,
num_levels = 8,
detector_type = FeatureDetectorTypes.KAZE,
descriptor_type = FeatureDescriptorTypes.KAZE,
sigma_level0 = Parameters.kSigmaLevel0,
match_ratio_test = kRatioTest,
tracker_type = kTrackerType)
AKAZE = dict(num_features=kNumFeatures,
num_levels = 8,
detector_type = FeatureDetectorTypes.AKAZE,
descriptor_type = FeatureDescriptorTypes.AKAZE,
sigma_level0 = Parameters.kSigmaLevel0,
match_ratio_test = kRatioTest,
tracker_type = kTrackerType)
SIFT = dict(num_features=kNumFeatures,
detector_type = FeatureDetectorTypes.SIFT,
descriptor_type = FeatureDescriptorTypes.SIFT,
sigma_level0 = Parameters.kSigmaLevel0,
match_ratio_test = kRatioTest,
tracker_type = kTrackerType)
ROOT_SIFT = dict(num_features=kNumFeatures,
detector_type = FeatureDetectorTypes.ROOT_SIFT,
descriptor_type = FeatureDescriptorTypes.ROOT_SIFT,
sigma_level0 = Parameters.kSigmaLevel0,
match_ratio_test = kRatioTest,
tracker_type = kTrackerType)
# NOTE: SURF is a patented algorithm and not included in the new opencv versions
# If you want to test it, you can install and old version of opencv that supports it: run
# $ pip3 uninstall opencv-contrib-python
# $ pip3 install opencv-contrib-python==3.4.2.16
SURF = dict(num_features=kNumFeatures,
num_levels = 8,
detector_type = FeatureDetectorTypes.SURF,
descriptor_type = FeatureDescriptorTypes.SURF,
sigma_level0 = Parameters.kSigmaLevel0,
match_ratio_test = kRatioTest,
tracker_type = kTrackerType)
SUPERPOINT = dict(num_features=kNumFeatures, # N.B.: here, keypoints are not oriented! (i.e. keypoint.angle=0 always)
num_levels = 1,
scale_factor = 1.2,
detector_type = FeatureDetectorTypes.SUPERPOINT,
descriptor_type = FeatureDescriptorTypes.SUPERPOINT,
sigma_level0 = Parameters.kSigmaLevel0,
match_ratio_test = kRatioTest,
tracker_type = kTrackerType)
XFEAT = dict(num_features=kNumFeatures, # N.B.: here, keypoints are not oriented! (i.e. keypoint.angle=0 always)
num_levels = 1,
scale_factor = 1.2,
detector_type = FeatureDetectorTypes.XFEAT,
descriptor_type = FeatureDescriptorTypes.XFEAT,
sigma_level0 = Parameters.kSigmaLevel0,
match_ratio_test = kRatioTest,
tracker_type = kTrackerType)
XFEAT_XFEAT = dict(num_features=kNumFeatures, # N.B.: here, keypoints are not oriented! (i.e. keypoint.angle=0 always)
num_levels = 1,
scale_factor = 1.2,
detector_type = FeatureDetectorTypes.XFEAT,
descriptor_type = FeatureDescriptorTypes.XFEAT,
sigma_level0 = Parameters.kSigmaLevel0,
match_ratio_test = kRatioTest,
tracker_type = FeatureTrackerTypes.XFEAT) # <= Using XFEAT matcher here!
LIGHTGLUE = dict(num_features=kNumFeatures, # N.B.: here, keypoints are not oriented! (i.e. keypoint.angle=0 always)
num_levels = 1,
scale_factor = 1.2,
detector_type = FeatureDetectorTypes.SUPERPOINT,
descriptor_type = FeatureDescriptorTypes.SUPERPOINT,
sigma_level0 = Parameters.kSigmaLevel0,
match_ratio_test = kRatioTest,
tracker_type = FeatureTrackerTypes.LIGHTGLUE)
LIGHTGLUE_DISK = dict(num_features=kNumFeatures, # N.B.: here, keypoints are not oriented! (i.e. keypoint.angle=0 always)
num_levels = 1,
scale_factor = 1.2,
detector_type = FeatureDetectorTypes.DISK,
descriptor_type = FeatureDescriptorTypes.DISK,
sigma_level0 = Parameters.kSigmaLevel0,
match_ratio_test = kRatioTest,
tracker_type = FeatureTrackerTypes.LIGHTGLUE)
LIGHTGLUE_ALIKED = dict(num_features=kNumFeatures, # N.B.: here, keypoints are not oriented! (i.e. keypoint.angle=0 always)
num_levels = 1,
scale_factor = 1.2,
detector_type = FeatureDetectorTypes.ALIKED,
descriptor_type = FeatureDescriptorTypes.ALIKED,
sigma_level0 = Parameters.kSigmaLevel0,
match_ratio_test = kRatioTest,
tracker_type = FeatureTrackerTypes.LIGHTGLUE)
LIGHTGLUESIFT = dict(num_features=kNumFeatures,
num_levels = 1,
scale_factor = 1.2,
detector_type = FeatureDetectorTypes.LIGHTGLUESIFT,
descriptor_type = FeatureDescriptorTypes.LIGHTGLUESIFT,
sigma_level0 = Parameters.kSigmaLevel0,
match_ratio_test = kRatioTest,
tracker_type = FeatureTrackerTypes.LIGHTGLUE)
DELF = dict(num_features=kNumFeatures,
num_levels = 1,
scale_factor = 1.2,
detector_type = FeatureDetectorTypes.DELF,
descriptor_type = FeatureDescriptorTypes.DELF,
sigma_level0 = Parameters.kSigmaLevel0,
match_ratio_test = kRatioTest,
tracker_type = kTrackerType)
D2NET = dict(num_features=kNumFeatures,
num_levels = 1,
scale_factor = 1.2,
detector_type = FeatureDetectorTypes.D2NET,
descriptor_type = FeatureDescriptorTypes.D2NET,
sigma_level0 = Parameters.kSigmaLevel0,
match_ratio_test = kRatioTest,
tracker_type = kTrackerType)
R2D2 = dict(num_features=kNumFeatures,
num_levels = 1,
scale_factor = 1.2,
detector_type = FeatureDetectorTypes.R2D2,
descriptor_type = FeatureDescriptorTypes.R2D2,
sigma_level0 = Parameters.kSigmaLevel0,
match_ratio_test = kRatioTest,
tracker_type = kTrackerType)
LFNET = dict(num_features=kNumFeatures,
num_levels = 1,
scale_factor = 1.2,
detector_type = FeatureDetectorTypes.LFNET,
descriptor_type = FeatureDescriptorTypes.LFNET,
sigma_level0 = Parameters.kSigmaLevel0,
match_ratio_test = kRatioTest,
tracker_type = kTrackerType)
CONTEXTDESC = dict(num_features=kNumFeatures,
num_levels = 1,
scale_factor = 1.2,
detector_type = FeatureDetectorTypes.CONTEXTDESC,
descriptor_type = FeatureDescriptorTypes.CONTEXTDESC,
sigma_level0 = Parameters.kSigmaLevel0,
match_ratio_test = kRatioTest,
tracker_type = kTrackerType)
KEYNET = dict(num_features=kNumFeatures,
num_levels = 1,
scale_factor = 1.2,
detector_type = FeatureDetectorTypes.KEYNET,
descriptor_type = FeatureDescriptorTypes.KEYNET,
sigma_level0 = Parameters.kSigmaLevel0,
match_ratio_test = kRatioTest,
tracker_type = kTrackerType)
DISK = dict(num_features=kNumFeatures,
num_levels = 1,
scale_factor = 1.2,
detector_type = FeatureDetectorTypes.DISK,
descriptor_type = FeatureDescriptorTypes.DISK,
sigma_level0 = Parameters.kSigmaLevel0,
match_ratio_test = kRatioTest,
tracker_type = kTrackerType)
ALIKED = dict(num_features=kNumFeatures,
num_levels = 1,
scale_factor = 1.2,
detector_type = FeatureDetectorTypes.ALIKED,
descriptor_type = FeatureDescriptorTypes.ALIKED,
sigma_level0 = Parameters.kSigmaLevel0,
match_ratio_test = kRatioTest,
tracker_type = kTrackerType)
KEYNETAFFNETHARDNET = dict(num_features=kNumFeatures, # N.B.: here, keypoints are not oriented! (i.e. keypoint.angle=0 always)
num_levels = 1,
scale_factor = 1.2,
detector_type = FeatureDetectorTypes.KEYNETAFFNETHARDNET,
descriptor_type = FeatureDescriptorTypes.KEYNETAFFNETHARDNET,
sigma_level0 = Parameters.kSigmaLevel0,
match_ratio_test = kRatioTest,
tracker_type = kTrackerType)
# =====================================
# Descriptor-based 'trackers' with ORB2
ORB2_FREAK = dict(num_features=kNumFeatures,
num_levels = 8,
scale_factor = 1.2,
detector_type = FeatureDetectorTypes.ORB2,
descriptor_type = FeatureDescriptorTypes.FREAK,
sigma_level0 = Parameters.kSigmaLevel0,
match_ratio_test = kRatioTest,
tracker_type = kTrackerType)
ORB2_BEBLID = dict(num_features=kNumFeatures,
num_levels = 8,
scale_factor = 1.2,
detector_type = FeatureDetectorTypes.ORB2,
descriptor_type = FeatureDescriptorTypes.BEBLID,
sigma_level0 = Parameters.kSigmaLevel0,
match_ratio_test = kRatioTest,
tracker_type = kTrackerType)
ORB2_HARDNET = dict(num_features=kNumFeatures,
num_levels = 8,
scale_factor = 1.2,
detector_type = FeatureDetectorTypes.ORB2,
descriptor_type = FeatureDescriptorTypes.HARDNET,
sigma_level0 = Parameters.kSigmaLevel0,
match_ratio_test = kRatioTest,
tracker_type = kTrackerType)
ORB2_SOSNET = dict(num_features=kNumFeatures,
num_levels = 8,
scale_factor = 1.2,
detector_type = FeatureDetectorTypes.ORB2,
descriptor_type = FeatureDescriptorTypes.SOSNET,
sigma_level0 = Parameters.kSigmaLevel0,
match_ratio_test = kRatioTest,
tracker_type = kTrackerType)
ORB2_L2NET = dict(num_features=kNumFeatures,
num_levels = 8,
scale_factor = 1.2,
detector_type = FeatureDetectorTypes.ORB2,
descriptor_type = FeatureDescriptorTypes.L2NET,
sigma_level0 = Parameters.kSigmaLevel0,
match_ratio_test = kRatioTest,
tracker_type = kTrackerType)
# =====================================
# Matcher-based 'trackers'
# Note: The following matchers are NOT able to extract keypoints and descriptors on a single provided image. They work directly on a pair of images (img1, img2) and produce
# as a result a pair of corresponding keypoint vectors (kps1, kps2).
# By design, if we feed these matchers with video images then the extracted keypoints are different on each image. That is, given:
# - matcher(img1, img2) -> (kps1, kps2a)
# - matcher(img2, img3) -> (kps2b, kps3)
# we have that the keypoint kps2a[i], extrated on img2 the first time, does not necessarily correspond to kps2b[i] or to any other kps2b[j] extracted the second time on img2.
# WARNING: For the reasons explained above, at present, we cannot use these "pure" matchers with classic SLAM. In fact, mapping and localization processes need more than two observations
# for each triangulated 3D point along different frames to obtain persistent map points and properly constrain camera pose optimizations in the Sim(3) manifold. WIP.
LOFTR = dict(num_features=kNumFeatures, # N.B.: here, keypoints are not oriented! (i.e. keypoint.angle=0 always)
num_levels = 1,
scale_factor = 1.2,
detector_type = FeatureDetectorTypes.NONE,
descriptor_type = FeatureDescriptorTypes.NONE,
sigma_level0 = Parameters.kSigmaLevel0,
match_ratio_test = kRatioTest,
tracker_type = FeatureTrackerTypes.LOFTR)