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