Removes element from sequence end
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
public static void SeqPop<T>(
CvSeq seq,
out T element
)
where T : struct, new()
Public Shared Sub SeqPop(Of T As {Structure, New}) (
seq As CvSeq,
<OutAttribute> ByRef element As T
)
public:
generic<typename T>
where T : value class, gcnew()
static void SeqPop(
CvSeq^ seq,
[OutAttribute] T% element
)
static member SeqPop :
seq : CvSeq *
element : 'T byref -> unit when 'T : struct, new()
Parameters
- seq
- Type: OpenCvSharpCvSeq
Sequence. - element
- Type: T
copied the removed element to this location.
Type Parameters
- T
- Element type
Reference