Copies the entire sequence or subsequence to the specified buffer and returns the pointer to the buffer

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 IntPtr cvCvtSeqToArray(
	IntPtr seq,
	IntPtr elements,
	MCvSlice slice
)
Public Shared Function cvCvtSeqToArray ( _
	seq As IntPtr, _
	elements As IntPtr, _
	slice As MCvSlice _
) As IntPtr
public:
static IntPtr cvCvtSeqToArray(
	IntPtr seq, 
	IntPtr elements, 
	MCvSlice slice
)

Parameters

seq
IntPtr
Sequence
elements
IntPtr
Pointer to the destination array that must be large enough. It should be a pointer to data, not a matrix header
slice
MCvSlice
The sequence part to copy to the array

Return Value

the pointer to the buffer

See Also