C# Class Accord.Math.CosineTransform

Discrete Cosine Transformation.

A discrete cosine transform (DCT) expresses a finite sequence of data points in terms of a sum of cosine functions oscillating at different frequencies. DCTs are important to numerous applications in science and engineering, from lossy compression of audio (e.g. MP3) and images (e.g. JPEG) (where small high-frequency components can be discarded), to spectral methods for the numerical solution of partial differential equations.

The use of cosine rather than sine functions is critical in these applications: for compression, it turns out that cosine functions are much more efficient, whereas for differential equations the cosines express a particular choice of boundary conditions.

References: Wikipedia contributors, "Discrete sine transform," Wikipedia, The Free Encyclopedia, available at: http://en.wikipedia.org/w/index.php?title=Discrete_sine_transform K. R. Castleman, Digital Image Processing. Chapter 13, p.288. Prentice. Hall, 1998.

ファイルを表示 Open project: accord-net/framework

Public Methods

Method Description
DCT ( double data ) : void

Forward Discrete Cosine Transform.

IDCT ( double data ) : void

Inverse Discrete Cosine Transform.

Method Details

DCT() public static method

Forward Discrete Cosine Transform.
public static DCT ( double data ) : void
data double
return void

IDCT() public static method

Inverse Discrete Cosine Transform.
public static IDCT ( double data ) : void
data double
return void