NASA Astrobee Robot Software
Astrobee Version:
develop
master
ros2
v0.17.0
v0.17.1
v0.17.2
v0.17.3
v0.18.0
v0.19.0
v0.19.1
Flight software for the Astrobee robots operating inside the International Space Station.
Main Page
Modules
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
brisk_feature_detector_and_matcher_params.h
Go to the documentation of this file.
1
/* Copyright (c) 2017, United States Government, as represented by the
2
* Administrator of the National Aeronautics and Space Administration.
3
*
4
* All rights reserved.
5
*
6
* The Astrobee platform is licensed under the Apache License, Version 2.0
7
* (the "License"); you may not use this file except in compliance with the
8
* License. You may obtain a copy of the License at
9
*
10
* http://www.apache.org/licenses/LICENSE-2.0
11
*
12
* Unless required by applicable law or agreed to in writing, software
13
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
14
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
15
* License for the specific language governing permissions and limitations
16
* under the License.
17
*/
18
#ifndef VISION_COMMON_BRISK_FEATURE_DETECTOR_AND_MATCHER_PARAMS_H_
19
#define VISION_COMMON_BRISK_FEATURE_DETECTOR_AND_MATCHER_PARAMS_H_
20
21
namespace
vision_common
{
22
struct
BriskFeatureDetectorAndMatcherParams
{
23
// Detection
24
int
brisk_threshold
;
25
int
brisk_octaves
;
26
float
brisk_float_pattern_scale
;
27
// Matching
28
int
max_match_hamming_distance
;
29
int
flann_table_number
;
30
int
flann_key_size
;
31
int
flann_multi_probe_level
;
32
};
33
}
// namespace vision_common
34
35
#endif // VISION_COMMON_BRISK_FEATURE_DETECTOR_AND_MATCHER_PARAMS_H_
vision_common::BriskFeatureDetectorAndMatcherParams
Definition:
brisk_feature_detector_and_matcher_params.h:22
vision_common::BriskFeatureDetectorAndMatcherParams::brisk_threshold
int brisk_threshold
Definition:
brisk_feature_detector_and_matcher_params.h:24
vision_common::BriskFeatureDetectorAndMatcherParams::flann_key_size
int flann_key_size
Definition:
brisk_feature_detector_and_matcher_params.h:30
vision_common
Definition:
brisk_feature_detector_and_matcher.h:25
vision_common::BriskFeatureDetectorAndMatcherParams::brisk_octaves
int brisk_octaves
Definition:
brisk_feature_detector_and_matcher_params.h:25
vision_common::BriskFeatureDetectorAndMatcherParams::flann_multi_probe_level
int flann_multi_probe_level
Definition:
brisk_feature_detector_and_matcher_params.h:31
vision_common::BriskFeatureDetectorAndMatcherParams::flann_table_number
int flann_table_number
Definition:
brisk_feature_detector_and_matcher_params.h:29
vision_common::BriskFeatureDetectorAndMatcherParams::brisk_float_pattern_scale
float brisk_float_pattern_scale
Definition:
brisk_feature_detector_and_matcher_params.h:26
vision_common::BriskFeatureDetectorAndMatcherParams::max_match_hamming_distance
int max_match_hamming_distance
Definition:
brisk_feature_detector_and_matcher_params.h:28