OpenCvSharp.Cv2.CubeRoot C# (CSharp) Method

CubeRoot() public static method

computes cube root of the argument
public static CubeRoot ( float val ) : float
val float
return float
        public static float CubeRoot(float val)
        {
            return NativeMethods.core_cubeRoot(val);
        }
        #endregion
Cv2