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 seq_flags, int header_size, int elem_size, CvMemStorage storage )
Parameters
- seq_flags
- 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. - header_size
- 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. - elem_size
- 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