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.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
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