Click or drag to resize

ShapeContextDistanceExtractor Constructor

http://www.emgu.com
Create a shape context distance extractor

Namespace:  Emgu.CV.Shape
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntax
public ShapeContextDistanceExtractor(
	HistogramCostExtractor comparer,
	IShapeTransformer transformer,
	int nAngularBins = 12,
	int nRadialBins = 4,
	float innerRadius = 0.2f,
	float outerRadius = 3f,
	int iterations = 3
)

Parameters

comparer
Type: Emgu.CV.ShapeHistogramCostExtractor
The histogram cost extractor, use ChiHistogramCostExtractor as default
transformer
Type: Emgu.CV.ShapeIShapeTransformer
The shape transformer, use ThinPlateSplineSphapeTransformer as default
nAngularBins (Optional)
Type: SystemInt32
Establish the number of angular bins for the Shape Context Descriptor used in the shape matching pipeline.
nRadialBins (Optional)
Type: SystemInt32
Establish the number of radial bins for the Shape Context Descriptor used in the shape matching pipeline.
innerRadius (Optional)
Type: SystemSingle
Set the inner radius of the shape context descriptor.
outerRadius (Optional)
Type: SystemSingle
Set the outer radius of the shape context descriptor.
iterations (Optional)
Type: SystemInt32
Iterations
See Also