Click or drag to resize
ToolboxLinearSubsampleT Method
http://www.emgu.com
Get subsamples with the specific rate

Namespace: Emgu.Util
Assembly: Emgu.Util (in Emgu.Util.dll) Version: 3.0.0.2161 (3.0.0.2161)
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.Util.Toolbox.LinearSubsample``1(System.Collections.Generic.IEnumerable{``0},System.Double)"]

Return Value

Type: IEnumerableT
src subsampled with the specific rate
See Also