/home/jamie/store/svn/libxtract/trunk/xtract/xtract_vector.h

Go to the documentation of this file.
00001 /* libxtract feature extraction library
00002  *  
00003  * Copyright (C) 2006 Jamie Bullock
00004  *
00005  * This program is free software; you can redistribute it and/or modify
00006  * it under the terms of the GNU General Public License as published by
00007  * the Free Software Foundation; either version 2 of the License, or
00008  * (at your option) any later version.
00009  *
00010  * This program is distributed in the hope that it will be useful,
00011  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00012  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00013  * GNU General Public License for more details.
00014  *
00015  * You should have received a copy of the GNU General Public License
00016  * along with this program; if not, write to the Free Software
00017  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, 
00018  * USA.
00019  */
00020 
00021 /* xtract_scalar.h: declares functions that extract a feature as a vector from an input vector */
00022 
00023 #ifndef XTRACT_VECTOR_H
00024 #define XTRACT_VECTOR_H
00025 
00026 #ifdef __cplusplus
00027 extern "C" {
00028 #endif
00029         
00044 int xtract_spectrum(const float *data, const int N, const void *argv, float *result);
00045 
00053 int xtract_autocorrelation_fft(const float *data, const int N, const void *argv, float *result);
00054 
00064 int xtract_mfcc(const float *data, const int N, const void *argv, float *result);
00065 
00072 int xtract_dct(const float *data, const int N, const void *argv, float *result);
00073 
00081 int xtract_autocorrelation(const float *data, const int N, const void *argv, float *result);
00082 
00090 int xtract_amdf(const float *data, const int N, const void *argv, float *result);
00091     
00099 int xtract_asdf(const float *data, const int N, const void *argv, float *result);
00100     
00110 int xtract_bark_coefficients(const float *data, const int N, const void *argv, float *result);
00111 
00119 int xtract_peak_spectrum(const float *data, const int N, const void *argv, float *result);
00120 
00127 int xtract_harmonic_spectrum(const float *data, const int N, const void *argv, float *result);
00128 
00131 #ifdef __cplusplus
00132 }
00133 #endif
00134 
00135 #endif

Generated on Fri Apr 20 11:16:54 2007 for LibXtract by  doxygen 1.4.7