CvSeqWriter Constructor (SeqType, Int32, Int32, CvMemStorage) OpenCvSharp Class Library
Creates new sequence and initializes writer for it (cvStartWriteSeq).

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

public CvSeqWriter(
	SeqType seqFlags,
	int headerSize,
	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 equal to 0, otherwise the appropriate type must be selected from the list of predefined sequence types.
headerSize
Type: SystemInt32
Size of the sequence header. The parameter value may not be less than sizeof(CvSeq). If a certain type or extension is specified, it must fit the base type header.
elemSize
Type: SystemInt32
Size of the sequence elements in bytes; must be consistent with the sequence type. For example, if the sequence of points is created (element type CV_SEQ_ELTYPE_POINT ), then the parameter elem_size must be equal to sizeof(CvPoint).
storage
Type: OpenCvSharpCvMemStorage
Sequence location.
See Also

Reference