Detect image features from the given image

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public ImageFeature[] DetectFeatures(
	Image<Gray, byte> image,
	Image<Gray, byte> mask
)
Public Function DetectFeatures ( _
	image As Image(Of Gray, Byte), _
	mask As Image(Of Gray, Byte) _
) As ImageFeature()
public:
array<ImageFeature>^ DetectFeatures(
	Image<Gray, unsigned char>^ image, 
	Image<Gray, unsigned char>^ mask
)

Parameters

image
Image<(Of <(Gray, Byte>)>)
The image to detect features from
mask
Image<(Of <(Gray, Byte>)>)
The optional mask, can be null if not needed

Return Value

The Image features detected from the given image

See Also