Table of Contents

Method Get

Namespace
OpenCvSharp
Assembly
OpenCvSharp.dll

Get<T>(int)

Returns a value to the specified array element.

public T Get<T>(int i0) where T : struct

Parameters

i0 int

Index along the dimension 0

Returns

T

A value to the specified array element.

Type Parameters

T

Get<T>(int, int)

Returns a value to the specified array element.

public T Get<T>(int i0, int i1) where T : struct

Parameters

i0 int

Index along the dimension 0

i1 int

Index along the dimension 1

Returns

T

A value to the specified array element.

Type Parameters

T

Get<T>(int, int, int)

Returns a value to the specified array element.

public T Get<T>(int i0, int i1, int i2) where T : struct

Parameters

i0 int

Index along the dimension 0

i1 int

Index along the dimension 1

i2 int

Index along the dimension 2

Returns

T

A value to the specified array element.

Type Parameters

T

Get<T>(params int[])

Returns a value to the specified array element.

public T Get<T>(params int[] idx) where T : struct

Parameters

idx int[]

Array of Mat::dims indices.

Returns

T

A value to the specified array element.

Type Parameters

T