Constructs sequence from array
Namespace: OpenCvSharp
Assembly: OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static CvSeq MakeSeqHeaderForArray<T>( SeqType seqType, int headerSize, int elemSize, T[] elements, CvSeq seq, CvSeqBlock block ) where T : struct, new()
Parameters
- seqType
- Type: OpenCvSharpSeqType
Type of the created sequence. - headerSize
- Type: SystemInt32
Size of the header of the sequence. Parameter sequence must point to the structure of that size or greater size. - elemSize
- Type: SystemInt32
Size of the sequence element. - elements
- Type: T
Elements that will form a sequence. - seq
- Type: OpenCvSharpCvSeq
Pointer to the local variable that is used as the sequence header. - block
- Type: OpenCvSharpCvSeqBlock
Pointer to the local variable that is the header of the single sequence block.
Type Parameters
- T
[Missing <typeparam name="T"/> documentation for "M:OpenCvSharp.Cv.MakeSeqHeaderForArray``1(OpenCvSharp.SeqType,System.Int32,System.Int32,``0[],OpenCvSharp.CvSeq,OpenCvSharp.CvSeqBlock)"]
Return Value
Type: CvSeq[Missing <returns> documentation for "M:OpenCvSharp.Cv.MakeSeqHeaderForArray``1(OpenCvSharp.SeqType,System.Int32,System.Int32,``0[],OpenCvSharp.CvSeq,OpenCvSharp.CvSeqBlock)"]
See Also