ImageTColor, TDepthExp Method |
http://www.emgu.com
Calculates exponent of every element of input array:
dst(I)=exp(src(I))
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic Image<TColor, TDepth> Exp()
Public Function Exp As Image(Of TColor, TDepth)
public:
Image<TColor, TDepth>^ Exp()
member Exp : unit -> Image<'TColor, 'TDepth>
Return Value
Type:
ImageTColor,
TDepthThe exponent image
RemarksMaximum relative error is ~7e-6. Currently, the function converts denormalized values to zeros on output.
See Also