Computes natural logarithm of absolute value of each matrix element: b = log(abs(a))

Namespace: Emgu.CV.GPU
Assembly: Emgu.CV.GPU (in Emgu.CV.GPU.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static void Log(
	IntPtr src,
	IntPtr dst
)
Public Shared Sub Log ( _
	src As IntPtr, _
	dst As IntPtr _
)
public:
static void Log(
	IntPtr src, 
	IntPtr dst
)

Parameters

src
IntPtr
The source GpuMat. Supports only CV_32FC1 type
dst
IntPtr
The resulting GpuMat

See Also