-
Notifications
You must be signed in to change notification settings - Fork 0
/
feature_manager_configs.py
49 lines (38 loc) · 1.87 KB
/
feature_manager_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
"""
* 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_manager import feature_manager_factory
from feature_types import FeatureDetectorTypes, FeatureDescriptorTypes, FeatureInfo
from parameters import Parameters
kNumFeatures=Parameters.kNumFeatures
"""
Interface for feature manager configurations
"""
class FeatureManagerConfigs(object):
# Template configuration (required for feature_manager_factory(), see feature_manager.py)
TEMPLATE = dict(num_features=kNumFeatures,
num_levels=8,
scale_factor = 1.2,
detector_type = FeatureDetectorTypes.NONE,
descriptor_type = FeatureDescriptorTypes.NONE)
# get the useful sub-part of an input configuration dictionary (used for extracting sub-configurations from FeatureTrackerConfigs)
# (see for instance the file test_feature_manager.py)
@staticmethod
def extract_from(dict_in):
dict_out = { key:dict_in[key] for key in FeatureManagerConfigs.TEMPLATE.keys() if key in dict_in }
return dict_out