SeqType Enumeration OpenCvSharp Class Library
The field flagscontain the particular dynamic type signature (CV_SEQ_MAGIC_VAL for dense sequences and CV_SET_MAGIC_VAL for sparse sequences) in the highest 16 bits and miscellaneous information about the sequence. The lowest CV_SEQ_ELTYPE_BITS bits contain the ID of the element type.

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

[FlagsAttribute]
public enum SeqType
Members

  Member nameValueDescription
Zero0 If the sequence is not passed to any function working with a specific type of sequences, you may use this value
EltypePoint12 (x,y) [CV_SEQ_ELTYPE_POINT]
EltypeCode0 freeman code: 0..7 [CV_SEQ_ELTYPE_CODE]
EltypeGeneric0 unspecified type of sequence elements [CV_SEQ_ELTYPE_GENERIC]
EltypePtr7 =6 [CV_SEQ_ELTYPE_PTR]
EltypePPoint7 &elem: pointer to element of other sequence [CV_SEQ_ELTYPE_PPOINT]
EltypeIndex4 #elem: index of element of some other sequence [CV_SEQ_ELTYPE_INDEX]
EltypeGraphEdge0 &next_o, &next_d, &vtx_o, &vtx_d [CV_SEQ_ELTYPE_GRAPH_EDGE]
EltypeGraphVertex0 first_edge, &(x,y) [CV_SEQ_ELTYPE_GRAPH_VERTEX]
EltypeTrianAtr0 vertex of the binary tree [CV_SEQ_ELTYPE_TRIAN_ATR]
EltypeConnectedComp0 connected component [CV_SEQ_ELTYPE_CONNECTED_COMP]
EltypePoint3D21 (x,y,z) [CV_SEQ_ELTYPE_POINT3D]
EltypeU8C10 1-channel 8-bit unsigned integers [CV_8UC1]
EltypeU8C28 2-channel 8-bit unsigned integers [CV_8UC2]
EltypeU8C316 3-channel 8-bit unsigned integers [CV_8UC3]
EltypeU8C424 4-channel 8-bit unsigned integers [CV_8UC4]
EltypeS8C11 1-channel 8-bit signed integers [CV_8SC1]
EltypeS8C29 2-channel 8-bit signed integers [CV_8SC2]
EltypeS8C317 3-channel 8-bit signed integers [CV_8SC3]
EltypeS8C425 4-channel 8-bit signed integers [CV_8SC4]
EltypeU16C12 1-channel 16-bit unsigned integers [CV_16UC1]
EltypeU16C210 2-channel 16-bit unsigned integers [CV_16UC2]
EltypeU16C318 3-channel 16-bit unsigned integers [CV_16UC3]
EltypeU16C426 4-channel 16-bit unsigned integers [CV_16UC4]
EltypeS16C13 1-channel 16-bit signed integers [CV_16SC1]
EltypeS16C211 2-channel 16-bit signed integers [CV_16SC2]
EltypeS16C319 3-channel 16-bit signed integers [CV_16SC3]
EltypeS16C427 4-channel 16-bit signed integers [CV_16SC4]
EltypeS32C14 1-channel 32-bit signed integers [CV_32SC1]
EltypeS32C212 2-channel 32-bit signed integers [CV_32SC2]
EltypeS32C320 3-channel 32-bit signed integers [CV_32SC3]
EltypeS32C428 4-channel 32-bit signed integers [CV_32SC4]
EltypeF32C15 1-channel 32-bit floating-point numbers [CV_32FC1]
EltypeF32C213 2-channel 32-bit floating-point numbers [CV_32FC2]
EltypeF32C321 3-channel 32-bit floating-point numbers [CV_32FC3]
EltypeF32C429 4-channel 32-bit floating-point numbers [CV_32FC4]
EltypeF64C16 1-channel 64-bit floating-point numbers [CV_64FC1]
EltypeF64C214 2-channel 64-bit floating-point numbers [CV_64FC2]
EltypeF64C322 3-channel 64-bit floating-point numbers [CV_64FC3]
EltypeF64C430 4-channel 64-bit floating-point numbers [CV_64FC4]
KindGeneric0 [CV_SEQ_KIND_GENERIC]
KindCurve4096 [CV_SEQ_KIND_GENERIC]
KindBinaryTree8192 [CV_SEQ_KIND_BIN_TREE]
KindGraph4096 [CV_SEQ_KIND_GRAPH]
KindSubdiv2D8192 [CV_SEQ_KIND_SUBDIV2D]
FlagClosed16384 flags for curves [CV_SEQ_FLAG_CLOSED]
FlagSimple0 flags for curves [CV_SEQ_FLAG_SIMPLE]
FlagConvex0 flags for curves [CV_SEQ_FLAG_CONVEX]
FlagHole32768 flags for curves [CV_SEQ_FLAG_HOLE]
Oriented4096 flags for graphs [CV_GRAPH_FLAG_ORIENTED]
Graph1536 flags for graphs [CV_GRAPH_FLAG_ORIENTED]
OrientedGraph5632 flags for graphs [CV_GRAPH_FLAG_ORIENTED]
PointSet12 point sets [CV_SEQ_POINT_SET]
Point3DSet21 point sets [CV_SEQ_POINT3D_SET]
PolyLine4108 point sets [CV_SEQ_POLYLINE]
Polygon20492 point sets [CV_SEQ_POLYGON]
Contour20492 point sets [CV_SEQ_CONTOUR]
SimplePolygon20492 point sets [CV_SEQ_SIMPLE_POLYGON]
Chain4096 chain-coded curves [CV_SEQ_CHAIN]
ChainContour20480 chain-coded curves [CV_SEQ_CHAIN_CONTOUR]
PolygonTree8192 binary tree for the contour [CV_SEQ_POLYGON_TREE]
ConnextedComp0 sequence of the connected components [CV_SEQ_CONNECTED_COMP]
Index4 sequence of the integer numbers [CV_SEQ_INDEX]
See Also

Reference