Detect planar object from the specific image

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

Syntax

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

Parameters

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

Return Value

The four corners of the detected region

See Also