comparison runner/LabFeatureWriter.h @ 154:6ff4da31db8b labfile

Implement .lab file writer
author Chris Cannam
date Tue, 14 Oct 2014 17:30:44 +0100
parents
children 946115b8badd
comparison
equal deleted inserted replaced
148:04945e74d314 154:6ff4da31db8b
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
2
3 /*
4 Sonic Visualiser
5 An audio file viewer and annotation editor.
6
7 Sonic Annotator
8 A utility for batch feature extraction from audio files.
9
10 Mark Levy, Chris Sutton and Chris Cannam, Queen Mary, University of London.
11 Copyright 2007-2008 QMUL.
12
13 This program is free software; you can redistribute it and/or
14 modify it under the terms of the GNU General Public License as
15 published by the Free Software Foundation; either version 2 of the
16 License, or (at your option) any later version. See the file
17 COPYING included with this distribution for more information.
18 */
19
20 #ifndef _LAB_FEATURE_WRITER_H_
21 #define _LAB_FEATURE_WRITER_H_
22
23 #include <string>
24 #include <map>
25 #include <set>
26
27 #include <QString>
28
29 #include "transform/FileFeatureWriter.h"
30
31 using std::string;
32 using std::map;
33
34 class QTextStream;
35 class QFile;
36
37 class LabFeatureWriter : public FileFeatureWriter
38 {
39 public:
40 LabFeatureWriter();
41 virtual ~LabFeatureWriter();
42
43 virtual string getDescription() const;
44
45 virtual ParameterList getSupportedParameters() const;
46 virtual void setParameters(map<string, string> &params);
47
48 virtual void write(QString trackid,
49 const Transform &transform,
50 const Vamp::Plugin::OutputDescriptor &output,
51 const Vamp::Plugin::FeatureList &features,
52 std::string summaryType = "");
53
54 virtual QString getWriterTag() const { return "lab"; }
55
56 private:
57 bool m_forceEnd;
58 };
59
60 #endif