Table of Contents

Class VectorOfVideoCapture

Namespace
Emgu.CV.Util
Assembly
Emgu.CV.dll

Wrapped class of the C++ standard vector of VideoCapture.

public class VectorOfVideoCapture : UnmanagedVector, IDisposable, IAsyncDisposable
Inheritance
VectorOfVideoCapture
Implements
Inherited Members

Constructors

VectorOfVideoCapture()

Create an empty standard vector of VideoCapture

public VectorOfVideoCapture()

VectorOfVideoCapture(params VideoCapture[])

Create an standard vector of VideoCapture with the initial values

public VectorOfVideoCapture(params VideoCapture[] values)

Parameters

values VideoCapture[]

The initial values

VectorOfVideoCapture(int)

Create an standard vector of VideoCapture of the specific size

public VectorOfVideoCapture(int size)

Parameters

size int

The size of the vector

Properties

this[int]

Get the item in the specific index

public VideoCapture this[int index] { get; }

Parameters

index int

The index

Property Value

VideoCapture

The item in the specific index

Length

The size of memory in bytes, that is needed to hold all the items in this vector

public override long Length { get; }

Property Value

long

Size

Get the size of the vector

public override int Size { get; }

Property Value

int

SizeOfItemInBytes

The size of the item in this Vector, counted as size in bytes.

public static int SizeOfItemInBytes { get; }

Property Value

int

StartAddress

The pointer to the first element on the vector. In case of an empty vector, IntPtr.Zero will be returned.

public override nint StartAddress { get; }

Property Value

nint

Methods

Clear()

Clear the vector

public void Clear()

DisposeObject()

Release the standard vector

protected override void DisposeObject()

Push(VectorOfVideoCapture)

Push multiple values from the other vector into this vector

public void Push(VectorOfVideoCapture other)

Parameters

other VectorOfVideoCapture

The other vector, from which the values will be pushed to the current vector

Push(VideoCapture)

Push a value into the standard vector

public void Push(VideoCapture value)

Parameters

value VideoCapture

The value to be pushed to the vector

Push(VideoCapture[])

Push multiple values into the standard vector

public void Push(VideoCapture[] values)

Parameters

values VideoCapture[]

The values to be pushed to the vector