Assign the new value to the particular element of single-channel array

Namespace: Emgu.CV
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static void cvSetReal3D(
	IntPtr arr,
	int idx0,
	int idx1,
	int idx2,
	double value
)
Public Shared Sub cvSetReal3D ( _
	arr As IntPtr, _
	idx0 As Integer, _
	idx1 As Integer, _
	idx2 As Integer, _
	value As Double _
)
public:
static void cvSetReal3D(
	IntPtr arr, 
	int idx0, 
	int idx1, 
	int idx2, 
	double value
)

Parameters

arr
IntPtr
Input array
idx0
Int32
The first zero-based component of the element index
idx1
Int32
The second zero-based component of the element index
idx2
Int32
The third zero-based component of the element index
value
Double
The assigned value

See Also