AffineBestOf2NearestMatcher 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 AffineBestOf2NearestMatcher(
bool fullAffine = false,
bool tryUseGpu = false,
float matchConf = 0.3f,
int numMatchesThresh1 = 6
)
Public Sub New (
Optional fullAffine As Boolean = false,
Optional tryUseGpu As Boolean = false,
Optional matchConf As Single = 0.3F,
Optional numMatchesThresh1 As Integer = 6
)
public:
AffineBestOf2NearestMatcher(
bool fullAffine = false,
bool tryUseGpu = false,
float matchConf = 0.3f,
int numMatchesThresh1 = 6
)
new :
?fullAffine : bool *
?tryUseGpu : bool *
?matchConf : float32 *
?numMatchesThresh1 : int
(* Defaults:
let _fullAffine = defaultArg fullAffine false
let _tryUseGpu = defaultArg tryUseGpu false
let _matchConf = defaultArg matchConf 0.3f
let _numMatchesThresh1 = defaultArg numMatchesThresh1 6
*)
-> AffineBestOf2NearestMatcher
Parameters
- fullAffine (Optional)
- Type: SystemBoolean
Full Affine - 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
See Also