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

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

Syntax

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

Parameters

src
Type: System..::.IntPtr
Source array, real 1D or 2D array
dst
Type: System..::.IntPtr
Destination array of the same size and same type as the source
flags
Type: Emgu.CV.CvEnum..::.CV_DCT_TYPE
Transformation flags

See Also