| MatExprMul Method (MatExpr, 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(
MatExpr e,
double scale = 1
)
Public Function Mul (
e As MatExpr,
Optional scale As Double = 1
) As MatExpr
public:
MatExpr^ Mul(
MatExpr^ e,
double scale = 1
)
member Mul :
e : MatExpr *
?scale : float
(* Defaults:
let _scale = defaultArg scale 1
*)
-> MatExpr
Parameters
- e
- Type: OpenCvSharpMatExpr
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.MatExpr,System.Double)"]
See Also