Chris@320
|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
|
Chris@320
|
2
|
Chris@320
|
3 /*
|
Chris@320
|
4 Sonic Visualiser
|
Chris@320
|
5 An audio file viewer and annotation editor.
|
Chris@320
|
6 Centre for Digital Music, Queen Mary, University of London.
|
Chris@320
|
7 This file copyright 2006 Chris Cannam and QMUL.
|
Chris@320
|
8
|
Chris@320
|
9 This program is free software; you can redistribute it and/or
|
Chris@320
|
10 modify it under the terms of the GNU General Public License as
|
Chris@320
|
11 published by the Free Software Foundation; either version 2 of the
|
Chris@320
|
12 License, or (at your option) any later version. See the file
|
Chris@320
|
13 COPYING included with this distribution for more information.
|
Chris@320
|
14 */
|
Chris@320
|
15
|
Chris@328
|
16 #ifndef _FEATURE_EXTRACTION_PLUGIN_TRANSFORMER_H_
|
Chris@328
|
17 #define _FEATURE_EXTRACTION_PLUGIN_TRANSFORMER_H_
|
Chris@320
|
18
|
Chris@350
|
19 #include "ModelTransformer.h"
|
Chris@350
|
20
|
Chris@361
|
21 #include <QString>
|
Chris@361
|
22
|
Chris@475
|
23 #include <vamp-hostsdk/Plugin.h>
|
Chris@350
|
24
|
Chris@350
|
25 #include <iostream>
|
Chris@320
|
26
|
Chris@320
|
27 class DenseTimeValueModel;
|
Chris@320
|
28
|
Chris@350
|
29 class FeatureExtractionModelTransformer : public ModelTransformer
|
Chris@320
|
30 {
|
Chris@320
|
31 Q_OBJECT
|
Chris@320
|
32
|
Chris@320
|
33 public:
|
gyorgyf@786
|
34 enum PreferredOutputModel {
|
gyorgyf@786
|
35 NoteOutputModel,
|
gyorgyf@786
|
36 FlexiNoteOutputModel,
|
gyorgyf@786
|
37 UndefinedOutputModel = 255
|
gyorgyf@786
|
38 };
|
gyorgyf@786
|
39
|
Chris@350
|
40 FeatureExtractionModelTransformer(Input input,
|
gyorgyf@786
|
41 const Transform &transform,
|
gyorgyf@786
|
42 const PreferredOutputModel outputmodel);
|
gyorgyf@786
|
43
|
Chris@331
|
44 virtual ~FeatureExtractionModelTransformer();
|
Chris@320
|
45
|
Chris@320
|
46 protected:
|
Chris@320
|
47 virtual void run();
|
Chris@320
|
48
|
Chris@320
|
49 Vamp::Plugin *m_plugin;
|
Chris@320
|
50 Vamp::Plugin::OutputDescriptor *m_descriptor;
|
Chris@779
|
51 int m_fixedRateFeatureNo; // to assign times to FixedSampleRate features
|
Chris@778
|
52 int m_outputNo;
|
Chris@822
|
53 PreferredOutputModel m_preferredOutputModel;
|
Chris@320
|
54
|
Chris@558
|
55 void createOutputModel();
|
Chris@558
|
56
|
Chris@320
|
57 void addFeature(size_t blockFrame,
|
Chris@320
|
58 const Vamp::Plugin::Feature &feature);
|
Chris@320
|
59
|
Chris@320
|
60 void setCompletion(int);
|
Chris@320
|
61
|
Chris@363
|
62 void getFrames(int channelCount, long startFrame, long size,
|
Chris@363
|
63 float **buffer);
|
Chris@320
|
64
|
Chris@320
|
65 // just casts
|
Chris@441
|
66
|
Chris@350
|
67 DenseTimeValueModel *getConformingInput();
|
Chris@441
|
68
|
Chris@441
|
69 template <typename ModelClass> bool isOutput() {
|
Chris@441
|
70 return dynamic_cast<ModelClass *>(m_output) != 0;
|
Chris@441
|
71 }
|
Chris@441
|
72
|
Chris@350
|
73 template <typename ModelClass> ModelClass *getConformingOutput() {
|
Chris@320
|
74 ModelClass *mc = dynamic_cast<ModelClass *>(m_output);
|
Chris@320
|
75 if (!mc) {
|
Chris@331
|
76 std::cerr << "FeatureExtractionModelTransformer::getOutput: Output model not conformable" << std::endl;
|
Chris@320
|
77 }
|
Chris@320
|
78 return mc;
|
Chris@320
|
79 }
|
Chris@320
|
80 };
|
Chris@320
|
81
|
Chris@320
|
82 #endif
|
Chris@320
|
83
|