Creates sequence
Namespace: OpenCvSharp
Assembly: OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static CvSeq<T> CreateSeq<T>( SeqType seqFlags, int headerSize, CvMemStorage storage ) where T : struct, new()
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. - headerSize
- Type: SystemInt32
Size of the sequence header; must be greater or equal to sizeof(CvSeq). If a specific type or its extension is indicated, this type must fit the base type header. - storage
- Type: OpenCvSharpCvMemStorage
Sequence location.
Type Parameters
- T
- Element type (ex. int, CvPoint)
Return Value
Type: CvSeqT[Missing <returns> documentation for "M:OpenCvSharp.Cv.CreateSeq``1(OpenCvSharp.SeqType,System.Int32,OpenCvSharp.CvMemStorage)"]
See Also