comparison core/startup_music_research.m @ 0:cc4b1211e677 tip

initial commit to HG from Changeset: 646 (e263d8a21543) added further path and more save "camirversion.m"
author Daniel Wolff
date Fri, 19 Aug 2016 13:07:06 +0200
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:cc4b1211e677
1 % ---
2 % startup.m
3 % this shall become the general camir startup
4 % ---
5
6 % global globalvars;
7
8 % use this revision numbers for figures etc!
9 % globalvars.camir.revision = str2double(substr('$Rev$', 5, -1));
10 % rev = textscan(evalc('!svnversion'),'%d%s');
11 % globalvars.camir.revision = double(rev{1});
12
13 globalvars.camir.path = pwd;
14 globalvars.camir.revision = camirversion;
15
16 clear rev
17 globalvars.debug = 2;
18
19
20 % load database
21 global comparison;
22 global comparison_ids;
23 load ('db.mat', 'comparison','comparison_ids','comparison_names');
24
25 warning off MATLAB:class:cannotUpdateClass
26
27 % initialize clip and feature databases
28
29 global db_magnaclips;
30 db_magnaclips = MTTClipDB();
31
32 global db_magnaaudiofeat;
33 db_magnaaudiofeat = MTTAudioFeatureDBgen('MTTAudioFeatureRAW');
34
35 global db_magnaaudiofeat_basicsm;
36 db_magnaaudiofeat_basicsm = MTTAudioFeatureDBgen('MTTAudioFeatureBasicSm');
37
38 global db_magnatagfeat_genrebasic;
39 db_magnatagfeat_genrebasic = MTTAudioFeatureDBgen('MTTTagFeatureGenreBasic');
40
41 global db_magnamixedfeat_genrebasicsm;
42 db_magnamixedfeat_genrebasicsm = MTTAudioFeatureDBgen('MTTMixedFeatureGenreBasicSm');
43
44 global db_MTTMixedFeatureGenreBasicSmPCA;
45 db_MTTMixedFeatureGenreBasicSmPCA = MTTAudioFeatureDBgen('MTTMixedFeatureGenreBasicSmPCA');
46
47 global db_MTTAudioFeatureSlaney08;
48 db_MTTAudioFeatureSlaney08 = MTTAudioFeatureDBgen('MTTAudioFeatureSlaney08');
49
50 global db_MTTMixedFeatureSlaney08GenreBasicSm;
51 db_MTTMixedFeatureSlaney08GenreBasicSm = MTTAudioFeatureDBgen('MTTMixedFeatureSlaney08GenreBasicSm');
52
53 global db_MTTMixedFeatureSlaney08GenreBasicSmPCA;
54 db_MTTMixedFeatureSlaney08GenreBasicSmPCA = MTTAudioFeatureDBgen('MTTMixedFeatureSlaney08GenreBasicSmPCA');
55
56 global db_MTTMixedFeatureGenreRandom;
57 db_MTTMixedFeatureGenreRandom = MTTAudioFeatureDBgen('MTTMixedFeatureGenreRandom');
58
59 global db_MTTMixedFeatureStober11Genre;
60 db_MTTMixedFeatureStober11Genre = MTTAudioFeatureDBgen('MTTMixedFeatureStober11Genre');
61
62 global db_MTTMixedFeatureStober11Slaney08GenreBasicSm;
63 db_MTTMixedFeatureStober11Slaney08GenreBasicSm = MTTAudioFeatureDBgen('MTTMixedFeatureStober11Slaney08GenreBasicSm');