Performs forward or inverse transform of 1D or 2D floating-point array

Namespace: Emgu.CV
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static void cvDCT(
	IntPtr src,
	IntPtr dst,
	CV_DCT_TYPE flags
)
Public Shared Sub cvDCT ( _
	src As IntPtr, _
	dst As IntPtr, _
	flags As CV_DCT_TYPE _
)
public:
static void cvDCT(
	IntPtr src, 
	IntPtr dst, 
	CV_DCT_TYPE flags
)

Parameters

src
IntPtr
Source array, real 1D or 2D array
dst
IntPtr
Destination array of the same size and same type as the source
flags
CV_DCT_TYPE
Transformation flags

See Also