mat1 / val

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)

Syntax

C#
public static Matrix<TDepth> operator /(
	Matrix<TDepth> mat1,
	double val
)
Visual Basic (Declaration)
Public Shared Operator / ( _
	mat1 As Matrix(Of TDepth), _
	val As Double _
) As Matrix(Of TDepth)
Visual C++
public:
static Matrix<TDepth>^ operator /(
	Matrix<TDepth>^ mat1, 
	double val
)

Parameters

mat1
Type: Emgu.CV..::.Matrix<(Of <(TDepth>)>)
The Matrix to be divided
val
Type: System..::.Double
The value to be divided

Return Value

mat1 / val

See Also