Compare the shape of the current contour with objectToMatch

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)

Syntax

C#
public double MatchShapes(
	Seq<T> objectToMatch,
	CONTOURS_MATCH_TYPE method
)
Visual Basic (Declaration)
Public Function MatchShapes ( _
	objectToMatch As Seq(Of T), _
	method As CONTOURS_MATCH_TYPE _
) As Double
Visual C++
public:
double MatchShapes(
	Seq<T>^ objectToMatch, 
	CONTOURS_MATCH_TYPE method
)

Parameters

objectToMatch
Type: Emgu.CV..::.Seq<(Of <(T>)>)
The object to match
method
Type: Emgu.CV.CvEnum..::.CONTOURS_MATCH_TYPE
contour matching method

Return Value

The degree of the similarity

See Also