http://www.emgu.com
Calculate square root of each source array element. in the case of multichannel
arrays each channel is processed independently. The function accuracy is approximately
the same as of the built-in std::sqrt.
Namespace: Emgu.CVAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.2.0.2682 (3.2.0.2682)
Syntax public static void Sqrt(
IInputArray src,
IOutputArray dst
)
Public Shared Sub Sqrt (
src As IInputArray,
dst As IOutputArray
)
public:
static void Sqrt(
IInputArray^ src,
IOutputArray^ dst
)
static member Sqrt :
src : IInputArray *
dst : IOutputArray -> unit
Parameters
- src
- Type: Emgu.CVIInputArray
The source floating-point array - dst
- Type: Emgu.CVIOutputArray
The destination array; will have the same size and the same type as src
See Also