Try to recognize the image and return its label

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

Syntax

C#
public string Recognize(
	Image<Gray, byte> image
)
Visual Basic (Declaration)
Public Function Recognize ( _
	image As Image(Of Gray, Byte) _
) As String
Visual C++
public:
String^ Recognize(
	Image<Gray, unsigned char>^ image
)

Parameters

image
Type: Emgu.CV..::.Image<(Of <(Gray, Byte>)>)
The image to be recognized

Return Value

String.Empty, if not recognized; Label of the corresponding image, otherwise

See Also