Emgu CV Library Documentation
Insert Method (index, data)
NamespacesEmgu.CVSeq<(Of <(T>)>)Insert(Int32, T)

www.emgu.com/wiki
Inserts element in sequence middle
Declaration Syntax
C#Visual BasicVisual 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

Assembly: Emgu.CV (Module: Emgu.CV) Version: 1.5.0.0 (1.5.0.0)