Removes all elements from the sequence. The function does not return the memory to the storage, but this memory is reused later when new elements are added to the sequence. This function time complexity is O(1).

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 cvClearSeq(
	IntPtr seq
)
Public Shared Sub cvClearSeq ( _
	seq As IntPtr _
)
public:
static void cvClearSeq(
	IntPtr seq
)

Parameters

seq
IntPtr
Sequence

See Also