view 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
line wrap: on
line source
% ---
% startup.m  
% this shall become the general camir startup
% ---

% global globalvars;

% use this revision numbers for figures etc!
% globalvars.camir.revision = str2double(substr('$Rev$',  5, -1));
% rev = textscan(evalc('!svnversion'),'%d%s');
% globalvars.camir.revision = double(rev{1});

globalvars.camir.path = pwd;
globalvars.camir.revision = camirversion;

clear rev
globalvars.debug = 2;


% load database
global comparison;
global comparison_ids;
load ('db.mat', 'comparison','comparison_ids','comparison_names');

warning off MATLAB:class:cannotUpdateClass

% initialize clip and feature databases

global db_magnaclips;
db_magnaclips = MTTClipDB();

global db_magnaaudiofeat;         
db_magnaaudiofeat = MTTAudioFeatureDBgen('MTTAudioFeatureRAW');

global db_magnaaudiofeat_basicsm;
db_magnaaudiofeat_basicsm = MTTAudioFeatureDBgen('MTTAudioFeatureBasicSm');

global db_magnatagfeat_genrebasic;
db_magnatagfeat_genrebasic = MTTAudioFeatureDBgen('MTTTagFeatureGenreBasic');

global db_magnamixedfeat_genrebasicsm;
db_magnamixedfeat_genrebasicsm = MTTAudioFeatureDBgen('MTTMixedFeatureGenreBasicSm');

global db_MTTMixedFeatureGenreBasicSmPCA;
db_MTTMixedFeatureGenreBasicSmPCA = MTTAudioFeatureDBgen('MTTMixedFeatureGenreBasicSmPCA');

global db_MTTAudioFeatureSlaney08;
db_MTTAudioFeatureSlaney08 =  MTTAudioFeatureDBgen('MTTAudioFeatureSlaney08');

global db_MTTMixedFeatureSlaney08GenreBasicSm;
db_MTTMixedFeatureSlaney08GenreBasicSm = MTTAudioFeatureDBgen('MTTMixedFeatureSlaney08GenreBasicSm');

global db_MTTMixedFeatureSlaney08GenreBasicSmPCA;
db_MTTMixedFeatureSlaney08GenreBasicSmPCA  = MTTAudioFeatureDBgen('MTTMixedFeatureSlaney08GenreBasicSmPCA');

global db_MTTMixedFeatureGenreRandom;
db_MTTMixedFeatureGenreRandom = MTTAudioFeatureDBgen('MTTMixedFeatureGenreRandom');

global db_MTTMixedFeatureStober11Genre;
db_MTTMixedFeatureStober11Genre = MTTAudioFeatureDBgen('MTTMixedFeatureStober11Genre');

global db_MTTMixedFeatureStober11Slaney08GenreBasicSm;
db_MTTMixedFeatureStober11Slaney08GenreBasicSm = MTTAudioFeatureDBgen('MTTMixedFeatureStober11Slaney08GenreBasicSm');