00001 /**************************************************************** 00002 * 00003 * Copyright (c) 2010 00004 * 00005 * Fraunhofer Institute for Manufacturing Engineering 00006 * and Automation (IPA) 00007 * 00008 * +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 00009 * 00010 * Project name: care-o-bot 00011 * ROS stack name: cob_driver 00012 * ROS package name: cob_light 00013 * Description: Switch robots led color by sending data to 00014 * the led-µC over serial connection. 00015 * 00016 * +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 00017 * 00018 * Author: Benjamin Maidel, email:benjamin.maidel@ipa.fraunhofer.de 00019 * Supervised by: Benjamin Maidel, email:benjamin.maidel@ipa.fraunhofer.de 00020 * 00021 * Date of creation: August 2012 00022 * ToDo: 00023 * 00024 * +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 00025 * 00026 * Redistribution and use in source and binary forms, with or without 00027 * modification, are permitted provided that the following conditions are met: 00028 * 00029 * * Redistributions of source code must retain the above copyright 00030 * notice, this list of conditions and the following disclaimer. 00031 * * Redistributions in binary form must reproduce the above copyright 00032 * notice, this list of conditions and the following disclaimer in the 00033 * documentation and/or other materials provided with the distribution. 00034 * * Neither the name of the Fraunhofer Institute for Manufacturing 00035 * Engineering and Automation (IPA) nor the names of its 00036 * contributors may be used to endorse or promote products derived from 00037 * this software without specific prior written permission. 00038 * 00039 * This program is free software: you can redistribute it and/or modify 00040 * it under the terms of the GNU Lesser General Public License LGPL as 00041 * published by the Free Software Foundation, either version 3 of the 00042 * License, or (at your option) any later version. 00043 * 00044 * This program is distributed in the hope that it will be useful, 00045 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00046 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00047 * GNU Lesser General Public License LGPL for more details. 00048 * 00049 * You should have received a copy of the GNU Lesser General Public 00050 * License LGPL along with this program. 00051 * If not, see <http://www.gnu.org/licenses/>. 00052 * 00053 ****************************************************************/ 00054 00055 #ifndef BEATANALYSER_H 00056 #define BEATANALYSER_H 00057 #include <vector> 00058 #include "band.h" 00059 #include "inttypes.h" 00060 #include "fft.h" 00061 #include "alsarecorder.h" 00062 00063 namespace mybeat 00064 { 00065 class BeatAnalyser 00066 { 00067 public: 00068 BeatAnalyser(uint16_t m_bandCount,uint32_t m_sampleRate, uint16_t m_recordSize); 00069 ~BeatAnalyser(); 00070 00071 void setFFT(FFT* value){m_FFT=value;} 00072 00073 void processData(); 00074 00075 double getMagSpectrum(uint32_t low, uint32_t high); 00076 00077 uint16_t getBands(){return m_bandCount;} 00078 00079 bool getBeat(uint16_t pos); 00080 00081 bool getBeatFrequency(uint32_t frequency); 00082 00083 bool getDrumBeat(); 00084 00085 bool getSnareBeat(); 00086 00087 Band* getBand(uint16_t pos); 00088 00089 double getMaxBandValue() { return m_maxBandValue; } 00090 00091 private: 00092 uint16_t m_bandCount; 00093 uint32_t m_sampleRate; 00094 uint16_t m_recordSize; 00095 FFT* m_FFT; 00096 std::vector<Band*> *m_SubBands; 00097 std::vector<bool> *m_beats; 00098 double m_maxBandValue; 00099 }; 00100 } 00101 00102 #endif