Adds several elements to either end of the sequence. The elements are added to the sequence in the same order as they are arranged in the input array but they can fall into different sequence blocks.
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)
Syntax
C# | Visual Basic | Visual C++ |
public static void cvSeqPushMulti( IntPtr seq, IntPtr elements, int count, BACK_OR_FRONT backOrFront )
Public Shared Sub cvSeqPushMulti ( _ seq As IntPtr, _ elements As IntPtr, _ count As Integer, _ backOrFront As BACK_OR_FRONT _ )
public: static void cvSeqPushMulti( IntPtr seq, IntPtr elements, int count, BACK_OR_FRONT backOrFront )
Parameters
- seq
- IntPtr
Sequence
- elements
- IntPtr
Added elements
- count
- Int32
Number of elements to push
- 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