clears (sets to zero) the particular element of dense array or deletes the element of sparse array. If the element does not exists, the function does nothing

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

Syntax

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

Parameters

arr
IntPtr
Input array
idx
array< Int32 >[]()[]
Array of the element indices

See Also