Table of Contents

Class VectorOfVectorOfPointF

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

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

public class VectorOfVectorOfPointF : UnmanagedVector, IAsyncDisposable, IInputOutputArray, IInputArrayOfArrays, IOutputArrayOfArrays, IOutputArray, IInputArray, IDisposable
Inheritance
VectorOfVectorOfPointF
Implements
Inherited Members
Extension Methods

Constructors

VectorOfVectorOfPointF()

Create an empty standard vector of VectorOfPointF

public VectorOfVectorOfPointF()

VectorOfVectorOfPointF(params VectorOfPointF[])

Create an standard vector of VectorOfPointF with the initial values

public VectorOfVectorOfPointF(params VectorOfPointF[] values)

Parameters

values VectorOfPointF[]

The initial values

VectorOfVectorOfPointF(PointF[][])

Create the standard vector of VectorOfPointF

public VectorOfVectorOfPointF(PointF[][] values)

Parameters

values PointF[][]

The values to be pushed to the vector

VectorOfVectorOfPointF(int)

Create an standard vector of VectorOfPointF of the specific size

public VectorOfVectorOfPointF(int size)

Parameters

size int

The size of the vector

Properties

this[int]

Get the item in the specific index

public VectorOfPointF this[int index] { get; }

Parameters

index int

The index

Property Value

VectorOfPointF

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()

GetInputArray()

Get the pointer to cv::_InputArray

public InputArray GetInputArray()

Returns

InputArray

The input array

GetInputOutputArray()

Get the pointer to cv::_InputOutputArray

public InputOutputArray GetInputOutputArray()

Returns

InputOutputArray

The input output array

GetOutputArray()

Get the pointer to cv::_OutputArray

public OutputArray GetOutputArray()

Returns

OutputArray

The output array

Push(VectorOfPointF)

Push a value into the standard vector

public void Push(VectorOfPointF value)

Parameters

value VectorOfPointF

The value to be pushed to the vector

Push(VectorOfPointF[])

Push multiple values into the standard vector

public void Push(VectorOfPointF[] values)

Parameters

values VectorOfPointF[]

The values to be pushed to the vector

Push(VectorOfVectorOfPointF)

Push multiple values from the other vector into this vector

public void Push(VectorOfVectorOfPointF other)

Parameters

other VectorOfVectorOfPointF

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

ToArrayOfArray()

Convert the standard vector to arrays of arrays of PointF

public PointF[][] ToArrayOfArray()

Returns

PointF[][]

Arrays of arrays of the PointF