00001 /* 00002 * Copyright (c) 2001-2004 MUSIC TECHNOLOGY GROUP (MTG) 00003 * UNIVERSITAT POMPEU FABRA 00004 * 00005 * 00006 * This program is free software; you can redistribute it and/or modify 00007 * it under the terms of the GNU General Public License as published by 00008 * the Free Software Foundation; either version 2 of the License, or 00009 * (at your option) any later version. 00010 * 00011 * This program is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 * GNU General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU General Public License 00017 * along with this program; if not, write to the Free Software 00018 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00019 * 00020 */ 00021 00022 #ifndef _SpectralEnvelope_Apply_ 00023 #define _SpectralEnvelope_Apply_ 00024 00025 #include "Processing.hxx" 00026 #include "DynamicType.hxx" 00027 #include "Spectrum.hxx" 00028 #include "SpectralPeak.hxx" 00029 #include "SpectralPeakArray.hxx" 00030 00031 namespace CLAM { 00032 00033 00037 class SpectralEnvelopeApplyConfig: public ProcessingConfig 00038 { 00039 public: 00040 DYNAMIC_TYPE_USING_INTERFACE (SpectralEnvelopeApplyConfig, 0,ProcessingConfig); 00041 }; 00042 00048 class SpectralEnvelopeApply: public Processing { 00049 SpectralEnvelopeApplyConfig mConfig; 00050 00054 const char *GetClassName() const {return "SpectralEnvelopeApply";} 00055 00061 bool ConcreteConfigure(const ProcessingConfig&); 00062 00063 public: 00065 SpectralEnvelopeApply(); 00069 SpectralEnvelopeApply(const SpectralEnvelopeApplyConfig &c); 00070 00072 ~SpectralEnvelopeApply(); 00073 00077 const ProcessingConfig &GetConfig() const { return mConfig;} 00078 00080 bool Do(void); 00081 00088 bool Do(const SpectralPeakArray& input,const Spectrum& spectralEnvelope,SpectralPeakArray& output); 00089 00096 bool Do(const Spectrum& input,const Spectrum& spectralEnvelope,Spectrum& output); 00097 00098 00102 bool SetPrototypes(const SpectralPeakArray& input,Spectrum& output); 00103 00104 bool SetPrototypes(); 00105 00106 bool UnsetPrototypes(); 00107 00108 bool MayDisableExecution() const {return true;} 00109 00110 }; 00111 00112 };//namespace CLAM 00113 00114 #endif // _SpectralEnvelope_Apply_ 00115