BestOf2NearestMatcher Constructor |
http://www.emgu.com
Create a new features matcher
Namespace:
Emgu.CV.Stitching
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic BestOf2NearestMatcher(
bool tryUseGpu = false,
float matchConf = 0.3f,
int numMatchesThresh1 = 6,
int numMatchesThresh2 = 6
)
Public Sub New (
Optional tryUseGpu As Boolean = false,
Optional matchConf As Single = 0.3F,
Optional numMatchesThresh1 As Integer = 6,
Optional numMatchesThresh2 As Integer = 6
)
public:
BestOf2NearestMatcher(
bool tryUseGpu = false,
float matchConf = 0.3f,
int numMatchesThresh1 = 6,
int numMatchesThresh2 = 6
)
new :
?tryUseGpu : bool *
?matchConf : float32 *
?numMatchesThresh1 : int *
?numMatchesThresh2 : int
(* Defaults:
let _tryUseGpu = defaultArg tryUseGpu false
let _matchConf = defaultArg matchConf 0.3f
let _numMatchesThresh1 = defaultArg numMatchesThresh1 6
let _numMatchesThresh2 = defaultArg numMatchesThresh2 6
*)
-> BestOf2NearestMatcher
Parameters
- tryUseGpu (Optional)
- Type: SystemBoolean
If true, will try to use gpu. - matchConf (Optional)
- Type: SystemSingle
Match confident - numMatchesThresh1 (Optional)
- Type: SystemInt32
Number of matches threshold - numMatchesThresh2 (Optional)
- Type: SystemInt32
Number of matches threshold
See Also