UMatSetTo Method (IInputArray, IInputArray) |
http://www.emgu.com
Sets all or some of the array elements to the specified value.
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic void SetTo(
IInputArray value,
IInputArray mask = null
)
Public Sub SetTo (
value As IInputArray,
Optional mask As IInputArray = Nothing
)
public:
void SetTo(
IInputArray^ value,
IInputArray^ mask = nullptr
)
member SetTo :
value : IInputArray *
?mask : IInputArray
(* Defaults:
let _mask = defaultArg mask null
*)
-> unit
Parameters
- value
- Type: Emgu.CVIInputArray
Assigned scalar converted to the actual array type. - mask (Optional)
- Type: Emgu.CVIInputArray
Operation mask of the same size as the umat.
See Also