Initializes a new instance of the
BFMatcher class
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic BFMatcher(
NormTypes normType = NormTypes.L2,
bool crossCheck = false
)
Public Sub New (
Optional normType As NormTypes = NormTypes.L2,
Optional crossCheck As Boolean = false
)
public:
BFMatcher(
NormTypes normType = NormTypes::L2,
bool crossCheck = false
)
new :
?normType : NormTypes *
?crossCheck : bool
(* Defaults:
let _normType = defaultArg normType NormTypes.L2
let _crossCheck = defaultArg crossCheck false
*)
-> BFMatcher
OpenCvSharp.BFMatcher = function(normType, crossCheck);
Parameters
- normType (Optional)
- Type: OpenCvSharpNormTypes
- crossCheck (Optional)
- Type: SystemBoolean
See Also