Detect planar object from the specific image

Namespace: Emgu.CV.Features2D
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

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

Parameters

image
Image<(Of <(<'Gray, Byte>)>)>
The image where the planar object will be detected
h
HomographyMatrix
The homography matrix which will be updated

Return Value

The four corners of the detected region

See Also