Mercurial > hg > audio-features-catalogue
comparison pdfextract/graphDefs.py @ 18:d5012016bf64 tip
added rdfpy and rdfonto directories
author | nothing@tehis.net |
---|---|
date | Tue, 23 Apr 2013 11:49:20 +0100 |
parents | 8bd8453e0551 |
children |
comparison
equal
deleted
inserted
replaced
17:2b5c292ad12f | 18:d5012016bf64 |
---|---|
20 "Perceptual Linear Prediction": "PLP", | 20 "Perceptual Linear Prediction": "PLP", |
21 "Linear Spectral Pairs": "LSP", | 21 "Linear Spectral Pairs": "LSP", |
22 "Average Magnitude Difference Function": "AMDF", | 22 "Average Magnitude Difference Function": "AMDF", |
23 "Octave Band Signal Intensity": "OBSI", | 23 "Octave Band Signal Intensity": "OBSI", |
24 "Root Mean Square": "RMS", | 24 "Root Mean Square": "RMS", |
25 "Harmonic Pitch Class Profile": "HPCP" | 25 "Harmonic Pitch Class Profile": "HPCP", |
26 "SignalToNoiseRatio": "SNR" | |
26 } | 27 } |
27 | 28 |
28 synonyms = { | 29 synonyms = { |
29 "Mel-scale Frequency Cepstral Coefficients": ["Mel Frequency Cepstral Coefficients", "Mel-Frequency Cepstral Coefficients", "Coefficients", "Mfcc"], | 30 "Mel-scale Frequency Cepstral Coefficients": ["Mel Frequency Cepstral Coefficients", "Mel-Frequency Cepstral Coefficients", "Coefficients", "Mfcc"], |
30 "Spectral Kurtosis": ["Kurtosis", "Spectral kurtosis"], | 31 "Spectral Kurtosis": ["Kurtosis", "Spectral kurtosis"], |
35 "Spectral Centroid": ["Centroid", "Spectral centroid"], | 36 "Spectral Centroid": ["Centroid", "Spectral centroid"], |
36 "Spectral Slope": ["Spectral slope"], | 37 "Spectral Slope": ["Spectral slope"], |
37 "Spectral Flatness": ["Spectral Flatness Measure", "Flatness"], | 38 "Spectral Flatness": ["Spectral Flatness Measure", "Flatness"], |
38 "Harmonic Spectrum": ["Harmonic spectrum"], | 39 "Harmonic Spectrum": ["Harmonic spectrum"], |
39 "Average Magnitude Difference Function": ["Amdf"], | 40 "Average Magnitude Difference Function": ["Amdf"], |
41 "Average Squared Difference Function": ["Asdf"], | |
40 "AutoCorrelation": ["Autocorrelation"], | 42 "AutoCorrelation": ["Autocorrelation"], |
41 "PeakSpectrum": ["Peak spectrum"], | 43 "PeakSpectrum": ["Peak spectrum"], |
42 "Spectral Spread": ["Spread"], | 44 "Spectral Spread": ["Spread"], |
43 "Spectral Crest": ["Spectral Crest Measure"], | 45 "Spectral Crest": ["Spectral Crest Measure"], |
44 "Onset Detection Function": ["Onset", "Onsets"], | 46 "Onset Detection Function": ["Onset", "Onsets", "Onset Detector"], |
45 "Root Mean Square": ["Rms"] | 47 "Root Mean Square": ["Rms"], |
48 "Note Tracker": ["Aubio Note Tracker"], | |
49 "Pitch": ["Aubio Pitch Detector"], | |
50 "Silence Test": ["Aubio Silence Detector"], | |
51 "AutoCorrelationFFT": ["Autocorrelationfft"], | |
52 "Average Deviation": ["Average deviation"], | |
53 "Bark Coefficients": ["Bark coefficients"], | |
54 "Beat Spectrum": ["Beat Spectra"], | |
55 "Beat Tracker": ["Beat Tracking", "BeatTracking" "BeatTrack", "Beat Track", "BeatTrack2", "Beats", "Aubio Beat Tracker"], | |
56 "Complex Domain Onset Detection": ["Complex Domain Method Onset Detection Function"], | |
57 "Discrete Cosine Transform": ["Dct"], | |
58 "Funcdamental Frequency": ["F0", "Failsafef0"], | |
59 "HighestValue": ["Highest value"], | |
60 "Harmonic Product Spectrum": ["Hps"], | |
61 "Key Detector": ["KeyTrack"], | |
62 "KrumhanslKeyFinder": ["Krumhansl_key_finder"], | |
63 "L-Norm": ["Lnorm"], | |
64 "Lowest Value": ["Lowest value"], | |
65 "MELODIAMelodyExtraction": ["MELODIAMelodyExtractionintermediatesteps"], | |
66 "MIDI Note": ["MIDI"], | |
67 "Note Onset Detector": ["Note Onsets", "Note Onset"], | |
68 "Octave Band Signal Intensity Ratio": ["OBSIR"], | |
69 "OddToEvenHarmonicRatio": ["Oddtoevenharmonicratio"], | |
70 "OddEvenRatio": ["Oddevenratio"], | |
71 "Pitch Countours": ["PitchContours:All", "PitchContours:Melody"], | |
72 "PitchFFTYIN": ["PitchFftYin"], | |
73 "PitchYIN": ["PitchYin", "Yin", "AubioYin"], | |
74 "Rhythm Patterns": ["RhythmPattern"], | |
75 "RMSAmplitude": ["Rmsamplitude"], | |
76 "Spectral Shape": ["Spectral Shape Descriptors"], | |
77 "Spectral Variance": ["Spectral Variation", "Spectralvariance"], | |
78 "Spectral Average Deviation": ["Spectralaveragedeviation"], | |
79 "Spectral Inharmonicity": ["Spectralinharmonicity"], | |
80 "Spectral Mean": ["Spectralmean"], | |
81 "Spectral Standard Deviation": ["Spectralstandarddeviation"], | |
82 "Standard Deviation": ["Standarddeviation"], | |
83 "Tristimulus1": ["TristimulusI"], | |
84 "Tristimulus2": ["TristimulusII"], | |
85 "Tristimulus3": ["TristimulusIII"], | |
86 "Even Harmonic Ratio": ["evenHarmonicRatio"] | |
46 } | 87 } |
47 | 88 |
48 execfile('/Users/alo/Development/python-Levenshtein-0.10.2/StringMatcher.py') | 89 execfile('/Users/alo/Development/python-Levenshtein-0.10.2/StringMatcher.py') |
49 | 90 |
50 def checkSynonyms( name ): | 91 def checkSynonyms( name ): |