Click or drag to resize

ToolboxLinearSubsampleT Method

http://www.emgu.com
Get subsamples with the specific rate

Namespace:  Emgu.TF.Util
Assembly:  Emgu.TF.Lite.World (in Emgu.TF.Lite.World.dll) Version: 1.13.1.439 (1.13.1.439)
Syntax
public static IEnumerable<T> LinearSubsample<T>(
	IEnumerable<T> src,
	double subsampleRate
)
where T : new(), Object, IInterpolatable<T>

Parameters

src
Type: System.Collections.GenericIEnumerableT
The source which the subsamples will be derived from
subsampleRate
Type: SystemDouble
The subsample rate

Type Parameters

T

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

Return Value

Type: IEnumerableT
src subsampled with the specific rate
See Also