Inserts element in sequence middle
Namespace:
Emgu.CV
Assembly:
Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)
Syntax
C# |
---|
public void Insert(
int index,
T data
) |
Visual Basic (Declaration) |
---|
Public Sub Insert ( _
index As Integer, _
data As T _
) |
Visual C++ |
---|
public:
void Insert(
int index,
T data
) |
Parameters
- index
- Type: System..::.Int32
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
- data
- Type: T
Inserted element
See Also