CvInvokeGetOptimalDFTSize Method |
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.World (in Emgu.CV.World.dll) Version: 3.2.0.2682 (3.2.0.2682)
Syntax public static int GetOptimalDFTSize(
int vecsize
)
Public Shared Function GetOptimalDFTSize (
vecsize As Integer
) As Integer
public:
static int GetOptimalDFTSize(
int vecsize
)
static member GetOptimalDFTSize :
vecsize : int -> int
Parameters
- vecsize
- Type: SystemInt32
Vector size
Return Value
Type:
Int32The 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