| MatExprMul Method (Mat, Double) |
Performs an element-wise multiplication or division of the two matrices.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public MatExpr Mul(
Mat m,
double scale = 1
)
Public Function Mul (
m As Mat,
Optional scale As Double = 1
) As MatExpr
public:
MatExpr^ Mul(
Mat^ m,
double scale = 1
)
member Mul :
m : Mat *
?scale : float
(* Defaults:
let _scale = defaultArg scale 1
*)
-> MatExpr
Parameters
- m
- Type: OpenCvSharpMat
Another array of the same type and the same size as this, or a matrix expression. - scale (Optional)
- Type: SystemDouble
Optional scale factor.
Return Value
Type:
MatExpr[Missing <returns> documentation for "M:OpenCvSharp.MatExpr.Mul(OpenCvSharp.Mat,System.Double)"]
See Also