C# Class SoundFingerprinting.Wavelets.StandardHaarWaveletDecomposition

Standart Haar wavelet decomposition algorithm.
Implemented according to the algorithm found here http://grail.cs.washington.edu/projects/wavelets/article/wavelet1.pdf According to Fast Multi-Resolution Image Query paper, Haar wavelet decomposition with standard basis function works better in image querying
Inheritance: HaarWaveletDecomposition
Mostrar archivo Open project: AddictedCS/soundfingerprinting

Public Methods

Method Description
DecomposeImageInPlace ( float image ) : void

Apply Haar Wavelet decomposition on the image

Private Methods

Method Description
DecomposeImage ( float image ) : void

The standard 2-dimensional Haar wavelet decomposition involves one-dimensional decomposition of each row followed by a one-dimensional decomposition of each column of the result.

Decomposition ( float array ) : void

Method Details

DecomposeImageInPlace() public method

Apply Haar Wavelet decomposition on the image
public DecomposeImageInPlace ( float image ) : void
image float Image to be decomposed
return void