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