raises the input matrix elements to the specified power (b = a**power)
            
 
    Namespace: 
   OpenCvSharp
    Assembly:
   OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
 Syntax
Syntaxpublic Mat Pow(
	double power
)
Public Function Pow ( 
	power As Double
) As Mat
public:
Mat^ Pow(
	double power
)
member Pow : 
        power : float -> Mat 
Parameters
- power
- Type: SystemDouble
 The exponent of power
Return Value
Type: 
MatThe destination array; will have the same size and the same type as src
 See Also
See Also