Calculates natural logarithm of absolute value of every element of input array: dst(I)=log(abs(src(I))), src(I)!=0 dst(I)=C, src(I)=0 Where C is large negative number (-700 in the current implementation)

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

Syntax

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

Parameters

src
Type: System..::.IntPtr
The source array
dst
Type: System..::.IntPtr
The destination array, it should have double type or the same type as the source

See Also