http://www.emgu.com
Returns the minimum number N that is greater to equal to size0, such that DFT of a vector of size N can be computed fast. In the current implementation N=2^p x 3^q x 5^r for some p, q, r.
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public static int cvGetOptimalDFTSize(
int size0
) |
Visual Basic |
---|
Public Shared Function cvGetOptimalDFTSize ( _
size0 As Integer _
) As Integer |
Visual C++ |
---|
public:
static int cvGetOptimalDFTSize(
int size0
) |
Return Value
The minimum number N that is greater to equal to size0, such that DFT of a vector of size N can be computed fast. In the current implementation N=2^p x 3^q x 5^r for some p, q, r.
See Also