CvSeqTInsert Method OpenCvSharp Class Library
Inserts element in sequence middle (cvSeqInsert).

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public virtual T Insert(
	int beforeIndex,
	T element
)

Parameters

beforeIndex
Type: SystemInt32
Index before which the element is inserted. Inserting before 0 (the minimal allowed value of the parameter) is equal to cvSeqPushFront and inserting before seq->total (the maximal allowed value of the parameter) is equal to cvSeqPush.
element
Type: T
Inserted element.

Return Value

Type: T
Inserted element.
See Also

Reference