Click or drag to resize

ToolboxLinearInterpolateT Method

http://www.emgu.com
Perform first degree interpolation give the sorted data src and the interpolation indexes

Namespace:  Emgu.Util
Assembly:  Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntax
public static IEnumerable<T> LinearInterpolate<T>(
	IEnumerable<T> src,
	IEnumerable<double> indexes
)
where T : new(), Object, IInterpolatable<T>

Parameters

src
Type: System.Collections.GenericIEnumerableT
The sorted data that will be interpolated from
indexes
Type: System.Collections.GenericIEnumerableDouble
The indexes of the interpolate result

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:Emgu.Util.Toolbox.LinearInterpolate``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{System.Double})"]

Return Value

Type: IEnumerableT

[Missing <returns> documentation for "M:Emgu.Util.Toolbox.LinearInterpolate``1(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{System.Double})"]

See Also