Perform a first degree interpolation to lookup the y coordinates given the x coordinates
Namespace:
Emgu.CV
Assembly:
Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)
Syntax
C# |
---|
public static float[] FirstDegreeInterpolate(
PointF[] points,
float[] indexes
) |
Visual Basic (Declaration) |
---|
Public Shared Function FirstDegreeInterpolate ( _
points As PointF(), _
indexes As Single() _
) As Single() |
Visual C++ |
---|
public:
static array<float>^ FirstDegreeInterpolate(
array<PointF>^ points,
array<float>^ indexes
) |
Return Value
The y coordinates as the result of the first degree interpolation
See Also