| MatSetTo Method (InputArray, Mat) | 
        
         
            Sets all or some of the array elements to the specified value.
            
 
    Namespace: 
   OpenCvSharp
    Assembly:
   OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
 Syntax
Syntaxpublic Mat SetTo(
	InputArray value,
	Mat mask = null
)
Public Function SetTo ( 
	value As InputArray,
	Optional mask As Mat = Nothing
) As Mat
public:
Mat^ SetTo(
	InputArray^ value, 
	Mat^ mask = nullptr
)
member SetTo : 
        value : InputArray * 
        ?mask : Mat 
(* Defaults:
        let _mask = defaultArg mask null
*)
-> Mat 
function SetTo(value, mask);
Parameters
- value
- Type: OpenCvSharpInputArray
 
- mask (Optional)
- Type: OpenCvSharpMat
 
Return Value
Type: 
Mat See Also
See Also