HausdorffDistanceExtractor Constructor |
http://www.emgu.com
Create Hausdorff distance extractor
Namespace:
Emgu.CV.Shape
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic HausdorffDistanceExtractor(
DistType distanceFlag = DistType.L2,
float rankProp = 0.6f
)
Public Sub New (
Optional distanceFlag As DistType = DistType.L2,
Optional rankProp As Single = 0.6F
)
public:
HausdorffDistanceExtractor(
DistType distanceFlag = DistType::L2,
float rankProp = 0.6f
)
new :
?distanceFlag : DistType *
?rankProp : float32
(* Defaults:
let _distanceFlag = defaultArg distanceFlag DistType.L2
let _rankProp = defaultArg rankProp 0.6f
*)
-> HausdorffDistanceExtractor
Parameters
- distanceFlag (Optional)
- Type: Emgu.CV.CvEnumDistType
Rhe norm used to compute the Hausdorff value between two shapes. It can be L1 or L2 norm. - rankProp (Optional)
- Type: SystemSingle
The rank proportion (or fractional value) that establish the Kth ranked value of the partial Hausdorff distance. Experimentally had been shown that 0.6 is a good value to compare shapes.
See Also