http://www.emgu.com
Create a BFMatcher of the specific distance type
Namespace:
Emgu.CV.Features2D
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic BFMatcher(
DistanceType distanceType,
bool crossCheck = false
)
Public Sub New (
distanceType As DistanceType,
Optional crossCheck As Boolean = false
)
public:
BFMatcher(
DistanceType distanceType,
bool crossCheck = false
)
new :
distanceType : DistanceType *
?crossCheck : bool
(* Defaults:
let _crossCheck = defaultArg crossCheck false
*)
-> BFMatcher
Parameters
- distanceType
- Type: Emgu.CV.Features2DDistanceType
The distance type - crossCheck (Optional)
- Type: SystemBoolean
Specify whether or not cross check is needed. Use false for default.
See Also