Click or drag to resize

Cv2Pow Method

raises the input matrix elements to the specified power (b = a**power)

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public static void Pow(
	InputArray src,
	double power,
	OutputArray dst
)

Parameters

src
Type: OpenCvSharpInputArray
The source array
power
Type: SystemDouble
The exponent of power
dst
Type: OpenCvSharpOutputArray
The destination array; will have the same size and the same type as src
See Also