C# 클래스 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
상속: HaarWaveletDecomposition
파일 보기 프로젝트 열기: AddictedCS/soundfingerprinting

공개 메소드들

메소드 설명
DecomposeImageInPlace ( float image ) : void

Apply Haar Wavelet decomposition on the image

비공개 메소드들

메소드 설명
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

메소드 상세

DecomposeImageInPlace() 공개 메소드

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