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
i0intIndex along the dimension 0
valueT
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
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
i0intIndex along the dimension 0
i1intIndex along the dimension 1
i2intIndex along the dimension 2
valueT
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
idxint[]Array of Mat::dims indices.
valueT
Type Parameters
T