http://www.emgu.com
Assembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.4.2.1777 (2.4.2.1777)
Computes power of each matrix element:
(dst(i,j) = pow( src(i,j) , power), if src.type() is integer;
(dst(i,j) = pow(fabs(src(i,j)), power), otherwise.
supports all, except depth == CV_64F
Namespace: Emgu.CV.GPUAssembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.4.2.1777 (2.4.2.1777)
Syntax
C# |
---|
public static void Pow( IntPtr src, double power, IntPtr dst, IntPtr stream ) |
Visual Basic |
---|
Public Shared Sub Pow ( _ src As IntPtr, _ power As Double, _ dst As IntPtr, _ stream As IntPtr _ ) |
Visual C++ |
---|
public: static void Pow( IntPtr src, double power, IntPtr dst, IntPtr stream ) |
Parameters
- src
- Type: System..::..IntPtr
The source GpuMat
- power
- Type: System..::..Double
The power
- dst
- Type: System..::..IntPtr
The resulting GpuMat
- stream
- Type: System..::..IntPtr
Use a Stream to call the function asynchronously (non-blocking) or IntPtr.Zero to call the function synchronously (blocking).