CvSeq Constructor (SeqType, Int32, CvMemStorage) OpenCvSharp Class Library
Creates sequence. header_size=sizeof(CvSeq)

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public CvSeq(
	SeqType seqFlags,
	int elemSize,
	CvMemStorage storage
)

Parameters

seqFlags
Type: OpenCvSharpSeqType
Flags of the created sequence. If the sequence is not passed to any function working with a specific type of sequences, the sequence value may be set to 0, otherwise the appropriate type must be selected from the list of predefined sequence types.
elemSize
Type: SystemInt32
Size of the sequence elements in bytes. The size must be consistent with the sequence type. For example, for a sequence of points to be created, the element type CV_SEQ_ELTYPE_POINT should be specified and the parameter elem_size must be equal to sizeof(CvPoint).
storage
Type: OpenCvSharpCvMemStorage
Sequence location.

Return Value

Type: 
See Also

Reference