Inserts element in sequence middle (cvSeqInsert).
Namespace: OpenCvSharp
Assembly: OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
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: TInserted element.
See Also