Adds an element to the end of sequence and retuns pointer to the allocated element. If the input element is NULL, the function simply allocates a space for one more element.

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

Syntax

C#
public static void cvSeqPush(
	IntPtr seq,
	IntPtr element
)
Visual Basic (Declaration)
Public Shared Sub cvSeqPush ( _
	seq As IntPtr, _
	element As IntPtr _
)
Visual C++
public:
static void cvSeqPush(
	IntPtr seq, 
	IntPtr element
)

Parameters

seq
Type: System..::.IntPtr
Sequence
element
Type: System..::.IntPtr
Added element

See Also