Create a sequence using the specific seqFlag and storage

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)

Syntax

C#
public Seq(
	int seqFlag,
	MemStorage storage
)
Visual Basic (Declaration)
Public Sub New ( _
	seqFlag As Integer, _
	storage As MemStorage _
)
Visual C++
public:
Seq(
	int seqFlag, 
	MemStorage^ storage
)

Parameters

seqFlag
Type: System..::.Int32
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
storage
Type: Emgu.CV..::.MemStorage
the storage

See Also