annotate qm-dsp.pro @ 245:cdfd0948a852

* First cut at properly integrating the segmenter and making it work right
author Chris Cannam <c.cannam@qmul.ac.uk>
date Wed, 09 Jan 2008 16:50:04 +0000
parents f599563a4663
children d096a79fa772
rev   line source
c@225 1 TEMPLATE = lib
c@245 2 CONFIG += warn_on staticlib release
c@230 3 CONFIG -= qt
c@225 4 OBJECTS_DIR = tmp_obj
c@225 5 MOC_DIR = tmp_moc
c@226 6
c@232 7 #DEPENDPATH += base \
c@232 8 # dsp/chromagram \
c@232 9 # dsp/keydetection \
c@232 10 # dsp/maths \
c@232 11 # dsp/onsets \
c@232 12 # dsp/phasevocoder \
c@232 13 # dsp/rateconversion \
c@232 14 # dsp/signalconditioning \
c@232 15 # dsp/tempotracking \
c@232 16 # dsp/tonal \
c@232 17 # dsp/transforms
c@242 18 INCLUDEPATH += . include
c@225 19
c@225 20 # Input
c@225 21 HEADERS += base/Pitch.h \
c@225 22 base/Window.h \
c@225 23 dsp/chromagram/Chromagram.h \
c@225 24 dsp/chromagram/ChromaProcess.h \
c@225 25 dsp/chromagram/ConstantQ.h \
c@232 26 dsp/keydetection/GetKeyMode.h \
c@225 27 dsp/onsets/DetectionFunction.h \
c@225 28 dsp/onsets/PeakPicking.h \
c@225 29 dsp/phasevocoder/PhaseVocoder.h \
c@225 30 dsp/rateconversion/Decimator.h \
c@245 31 dsp/segmentation/cluster_melt.h \
c@245 32 dsp/segmentation/ClusterMeltSegmenter.h \
c@245 33 dsp/segmentation/cluster_segmenter.h \
c@245 34 dsp/segmentation/SavedFeatureSegmenter.h \
c@245 35 dsp/segmentation/Segmenter.h \
c@245 36 dsp/segmentation/segment.h \
c@225 37 dsp/signalconditioning/DFProcess.h \
c@225 38 dsp/signalconditioning/Filter.h \
c@225 39 dsp/signalconditioning/FiltFilt.h \
c@225 40 dsp/signalconditioning/Framer.h \
c@225 41 dsp/tempotracking/TempoTrack.h \
c@225 42 dsp/tonal/ChangeDetectionFunction.h \
c@225 43 dsp/tonal/TCSgram.h \
c@225 44 dsp/tonal/TonalEstimator.h \
c@241 45 dsp/transforms/FFT.h \
c@244 46 hmm/hmm.h \
c@241 47 maths/Correlation.h \
c@241 48 maths/Histogram.h \
c@241 49 maths/MathAliases.h \
c@241 50 maths/MathUtilities.h \
c@242 51 maths/Polyfit.h \
c@244 52 maths/pca/pca.h
c@225 53 SOURCES += base/Pitch.cpp \
c@225 54 dsp/chromagram/Chromagram.cpp \
c@225 55 dsp/chromagram/ChromaProcess.cpp \
c@225 56 dsp/chromagram/ConstantQ.cpp \
c@232 57 dsp/keydetection/GetKeyMode.cpp \
c@225 58 dsp/onsets/DetectionFunction.cpp \
c@225 59 dsp/onsets/PeakPicking.cpp \
c@225 60 dsp/phasevocoder/PhaseVocoder.cpp \
c@225 61 dsp/rateconversion/Decimator.cpp \
c@245 62 dsp/segmentation/cluster_melt.c \
c@245 63 dsp/segmentation/ClusterMeltSegmenter.cpp \
c@245 64 dsp/segmentation/cluster_segmenter.c \
c@245 65 dsp/segmentation/SavedFeatureSegmenter.cpp \
c@245 66 dsp/segmentation/Segmenter.cpp \
c@225 67 dsp/signalconditioning/DFProcess.cpp \
c@225 68 dsp/signalconditioning/Filter.cpp \
c@225 69 dsp/signalconditioning/FiltFilt.cpp \
c@225 70 dsp/signalconditioning/Framer.cpp \
c@225 71 dsp/tempotracking/TempoTrack.cpp \
c@225 72 dsp/tonal/ChangeDetectionFunction.cpp \
c@225 73 dsp/tonal/TCSgram.cpp \
c@225 74 dsp/tonal/TonalEstimator.cpp \
c@241 75 dsp/transforms/FFT.cpp \
c@244 76 hmm/hmm.c \
c@241 77 maths/Correlation.cpp \
c@242 78 maths/MathUtilities.cpp \
c@244 79 maths/pca/pca.c