HausdorffDistanceExtractor Constructor |
http://www.emgu.com
Create Hausdorff distance extractor
Namespace: Emgu.CV.ShapeAssembly: Emgu.CV.Shape (in Emgu.CV.Shape.dll) Version: 3.0.0.2161 (3.0.0.2161)
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