MatrixTDepthMultiply Operator (MatrixTDepth, Double) |
http://www.emgu.com mat1 * val
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.3.0.2824 (3.3.0.2824)
Syntaxpublic static Matrix<TDepth> operator *(
Matrix<TDepth> mat1,
double val
)
Public Shared Operator * (
mat1 As Matrix(Of TDepth),
val As Double
) As Matrix(Of TDepth)
public:
static Matrix<TDepth>^ operator *(
Matrix<TDepth>^ mat1,
double val
)
static let inline (*)
mat1 : Matrix<'TDepth> *
val : float : Matrix<'TDepth>
Parameters
- mat1
- Type: Emgu.CVMatrixTDepth
The Matrix to be multiplied - val
- Type: SystemDouble
The value to be multiplied
Return Value
Type:
MatrixTDepthmat1 *
val
See Also