Perform a first degree interpolation to lookup the y coordinates given the x coordinates

C# | Visual Basic | Visual C++ |
public static T[] FirstDegreeInterpolate<T>( Point2D<T>[] points, T[] indexes ) where T : new(), IComparable
Public Shared Function FirstDegreeInterpolate(Of T As {New, IComparable}) ( _ points As Point2D(Of T)(), _ indexes As T() _ ) As T()
public: generic<typename T> where T : gcnew(), IComparable static array<T>^ FirstDegreeInterpolate( array<Point2D<T>^>^ points, array<T>^ indexes )

- T
[Missing <typeparam name="T"/> documentation for "M:Emgu.CV.PointCollection.FirstDegreeInterpolate``1(Emgu.CV.Point2D{``0}[],``0[])"]

- points (array< Point2D<(Of <(T>)>) >[]()[])
- The collection of points, Must be sorted by x value
- indexes (array< T >[]()[])
- the x coordinates

The y coordinates as the result of the first degree interpolation