Removes several elements from either end of the sequence. If the number of the elements to be removed exceeds the total number of elements in the sequence, the function removes as many elements as possible

Namespace: Emgu.CV
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static void cvSeqPopMulti(
	IntPtr seq,
	IntPtr elements,
	int count,
	BACK_OR_FRONT backOrFront
)
Public Shared Sub cvSeqPopMulti ( _
	seq As IntPtr, _
	elements As IntPtr, _
	count As Integer, _
	backOrFront As BACK_OR_FRONT _
)
public:
static void cvSeqPopMulti(
	IntPtr seq, 
	IntPtr elements, 
	int count, 
	BACK_OR_FRONT backOrFront
)

Parameters

seq
IntPtr
Sequence
elements
IntPtr
Removed elements
count
Int32
Number of elements to remove
backOrFront
BACK_OR_FRONT
If != 0, the elements are added to the beginning of sequence; Otherwise the elements are added to the end of sequence

See Also