http://www.emgu.com
Calculates exponent of every element of input array:
dst(I)=exp(src(I))
Maximum relative error is 7e-6. Currently, the function converts denormalized values to zeros on output
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic static void Exp(
IInputArray src,
IOutputArray dst
)
Public Shared Sub Exp (
src As IInputArray,
dst As IOutputArray
)
public:
static void Exp(
IInputArray^ src,
IOutputArray^ dst
)
static member Exp :
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