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.0.1.0 (2.0.1.0)

Syntax

C#
public static void cvSet(
	IntPtr arr,
	MCvScalar value,
	IntPtr mask
)
Visual Basic (Declaration)
Public Shared Sub cvSet ( _
	arr As IntPtr, _
	value As MCvScalar, _
	mask As IntPtr _
)
Visual C++
public:
static void cvSet(
	IntPtr arr, 
	MCvScalar value, 
	IntPtr mask
)

Parameters

arr
Type: System..::.IntPtr
The destination array
value
Type: Emgu.CV.Structure..::.MCvScalar
Fill value
mask
Type: System..::.IntPtr
Operation mask, 8-bit single channel array; specifies elements of destination array to be changed

See Also