view dsp/chromagram/ChromaProcess.h @ 257:9619d6995b73

* Add windowing to Chromagram input * Add window option to MFCC config
author Chris Cannam <c.cannam@qmul.ac.uk>
date Fri, 18 Jan 2008 17:57:40 +0000
parents 49844bc8a895
children
line wrap: on
line source
/* -*- c-basic-offset: 4 indent-tabs-mode: nil -*-  vi:set ts=8 sts=4 sw=4: */

/*
    QM DSP Library

    Centre for Digital Music, Queen Mary, University of London.
    This file copyright 2005-2006 Christian Landone.
    All rights reserved.
*/

#ifndef CHROMAPROCESS_H
#define CHROMAPROCESS_H

#include <vector>

using namespace std;

class ChromaProcess  
{
public:
    void findHistMaxMin( vector<double> hist, double* max, int*maxIdx, double* min, int* minIdx );
    vector <int> mod( vector <int> input, int res );
    vector <int> getPeaks( vector <double> chroma, unsigned int BPO );
    int findChromaBias( vector<double> chromaVector, unsigned int BPO, unsigned int frames );
    ChromaProcess();
    virtual ~ChromaProcess();

};

#endif // !defined(CHROMAPROCESS_H)