http://www.emgu.com
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.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic static void Log(
IInputArray src,
IOutputArray dst
)
Public Shared Sub Log (
src As IInputArray,
dst As IOutputArray
)
public:
static void Log(
IInputArray^ src,
IOutputArray^ dst
)
static member Log :
src : IInputArray *
dst : IOutputArray -> unit
Parameters
- src
- Type: Emgu.CVIInputArray
The source array - dst
- Type: Emgu.CVIOutputArray
The destination array, it should have double type or the same type as the source
See Also