Copies scalar value to every selected element of the destination array: arr(I)=value if mask(I)!=0 If array arr is of IplImage type, then is ROI used, but COI must not be set

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 cvSet(
	IntPtr arr,
	MCvScalar value,
	IntPtr mask
)
Public Shared Sub cvSet ( _
	arr As IntPtr, _
	value As MCvScalar, _
	mask As IntPtr _
)
public:
static void cvSet(
	IntPtr arr, 
	MCvScalar value, 
	IntPtr mask
)

Parameters

arr
IntPtr
The destination array
value
MCvScalar
Fill value
mask
IntPtr
Operation mask, 8-bit single channel array; specifies elements of destination array to be changed

See Also