Table of Contents

Method Set

Namespace
OpenCvSharp
Assembly
OpenCvSharp.dll

Set<T>(int, T)

Set a value to the specified array element.

public void Set<T>(int i0, T value) where T : struct

Parameters

i0 int

Index along the dimension 0

value T

Type Parameters

T

Set<T>(int, int, T)

Set a value to the specified array element.

public void Set<T>(int i0, int i1, T value) where T : struct

Parameters

i0 int

Index along the dimension 0

i1 int

Index along the dimension 1

value T

Type Parameters

T

Set<T>(int, int, int, T)

Set a value to the specified array element.

public void Set<T>(int i0, int i1, int i2, T value) 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

value T

Type Parameters

T

Set<T>(int[], T)

Set a value to the specified array element.

public void Set<T>(int[] idx, T value) where T : struct

Parameters

idx int[]

Array of Mat::dims indices.

value T

Type Parameters

T