Inserts element in sequence middle
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.0.1010 (2.2.0.1010)
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