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

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

Syntax

C#
public static void cvSetRealND(
	IntPtr arr,
	int[] idx,
	double value
)
Visual Basic (Declaration)
Public Shared Sub cvSetRealND ( _
	arr As IntPtr, _
	idx As Integer(), _
	value As Double _
)
Visual C++
public:
static void cvSetRealND(
	IntPtr arr, 
	[InAttribute] array<int>^ idx, 
	double value
)

Parameters

arr
Type: System..::.IntPtr
Input array
idx
Type: array< System..::.Int32 >[]()[]
Array of the element indices
value
Type: System..::.Double
The assigned value

See Also