http://www.emgu.com
Create a BFMatcher of the specific distance type
Namespace:
Emgu.CV.Features2D
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
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