Determines whether the point is inside contour, outside, or lies on an edge (or coinsides with a vertex)

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public override double InContour(
	PointF point
)
Public Overrides Function InContour ( _
	point As PointF _
) As Double
public:
virtual double InContour(
	PointF point
) override

Parameters

point
PointF
The point to be tested

Return Value

Positive if inside; negative if out side; 0 if on the contour

Remarks

Requires MCvContour.rect to be pre-computed

See Also