Emgu CV Library Documentation
FirstDegreeInterpolate Method (points, indexes)
NamespacesEmgu.CVPointCollectionFirstDegreeInterpolate(array<PointF>[]()[], array<Single>[]()[])

www.emgu.com/wiki
Perform a first degree interpolation to lookup the y coordinates given the x coordinates
Declaration Syntax
C#Visual BasicVisual C++
public static float[] FirstDegreeInterpolate(
	PointF[] points,
	float[] indexes
)
Public Shared Function FirstDegreeInterpolate ( _
	points As PointF(), _
	indexes As Single() _
) As Single()
public:
static array<float>^ FirstDegreeInterpolate(
	array<PointF>^ points, 
	array<float>^ indexes
)
Parameters
points (array< PointF >[]()[])
The collection of points, Must be sorted by x value
indexes (array< Single >[]()[])
the x coordinates
Return Value
The y coordinates as the result of the first degree interpolation

Assembly: Emgu.CV (Module: Emgu.CV) Version: 1.5.0.0 (1.5.0.0)