OpenCvSharp.Cv2.GetOptimalDFTSize C# (CSharp) Method

GetOptimalDFTSize() public static method

computes the minimal vector size vecsize1 >= vecsize so that the dft() of the vector of length vecsize1 can be computed efficiently
public static GetOptimalDFTSize ( int vecsize ) : int
vecsize int
return int
        public static int GetOptimalDFTSize(int vecsize)
        {
            return NativeMethods.core_getOptimalDFTSize(vecsize);
        }
        #endregion
Cv2