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

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

- 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 the x value.
- index (T)
- the x coordinate

the y coordinate as the result of the first degree interpolation