Return the particular array element

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

Syntax

C#
public static MCvScalar cvGet3D(
	IntPtr arr,
	int idx0,
	int idx1,
	int idx2
)
Visual Basic (Declaration)
Public Shared Function cvGet3D ( _
	arr As IntPtr, _
	idx0 As Integer, _
	idx1 As Integer, _
	idx2 As Integer _
) As MCvScalar
Visual C++
public:
static MCvScalar cvGet3D(
	IntPtr arr, 
	int idx0, 
	int idx1, 
	int idx2
)

Parameters

arr
Type: System..::.IntPtr
Input array. Must have a single channel
idx0
Type: System..::.Int32
The first zero-based component of the element index
idx1
Type: System..::.Int32
The second zero-based component of the element index
idx2
Type: System..::.Int32
The third zero-based component of the element index

Return Value

the particular array element

See Also