CvArrayTDepthSetValue Method (Double, CvArrayByte) |
http://www.emgu.com
Set the element of the Array to value, using the specific mask
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic void SetValue(
double value,
CvArray<byte> mask = null
)
Public Sub SetValue (
value As Double,
Optional mask As CvArray(Of Byte) = Nothing
)
public:
void SetValue(
double value,
CvArray<unsigned char>^ mask = nullptr
)
member SetValue :
value : float *
?mask : CvArray<byte>
(* Defaults:
let _mask = defaultArg mask null
*)
-> unit
Parameters
- value
- Type: SystemDouble
The value to be set - mask (Optional)
- Type: Emgu.CVCvArrayByte
The mask for the operation
See Also