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@331
|
16 #include "FeatureExtractionModelTransformer.h"
|
Chris@320
|
17
|
Chris@320
|
18 #include "plugin/FeatureExtractionPluginFactory.h"
|
Chris@320
|
19 #include "plugin/PluginXml.h"
|
Chris@475
|
20 #include <vamp-hostsdk/Plugin.h>
|
Chris@320
|
21
|
Chris@320
|
22 #include "data/model/Model.h"
|
Chris@320
|
23 #include "base/Window.h"
|
Chris@387
|
24 #include "base/Exceptions.h"
|
Chris@320
|
25 #include "data/model/SparseOneDimensionalModel.h"
|
Chris@320
|
26 #include "data/model/SparseTimeValueModel.h"
|
Chris@320
|
27 #include "data/model/EditableDenseThreeDimensionalModel.h"
|
Chris@320
|
28 #include "data/model/DenseTimeValueModel.h"
|
Chris@320
|
29 #include "data/model/NoteModel.h"
|
gyorgyf@786
|
30 #include "data/model/FlexiNoteModel.h"
|
Chris@441
|
31 #include "data/model/RegionModel.h"
|
Chris@320
|
32 #include "data/model/FFTModel.h"
|
Chris@320
|
33 #include "data/model/WaveFileModel.h"
|
Chris@558
|
34 #include "rdf/PluginRDFDescription.h"
|
Chris@320
|
35
|
Chris@350
|
36 #include "TransformFactory.h"
|
Chris@350
|
37
|
Chris@320
|
38 #include <iostream>
|
Chris@320
|
39
|
Chris@859
|
40 #include <QSettings>
|
Chris@859
|
41
|
Chris@350
|
42 FeatureExtractionModelTransformer::FeatureExtractionModelTransformer(Input in,
|
Chris@859
|
43 const Transform &transform) :
|
Chris@350
|
44 ModelTransformer(in, transform),
|
Chris@859
|
45 m_plugin(0)
|
Chris@320
|
46 {
|
Chris@690
|
47 // SVDEBUG << "FeatureExtractionModelTransformer::FeatureExtractionModelTransformer: plugin " << pluginId << ", outputName " << m_transform.getOutput() << endl;
|
Chris@350
|
48
|
Chris@849
|
49 initialise();
|
Chris@849
|
50 }
|
Chris@849
|
51
|
Chris@849
|
52 FeatureExtractionModelTransformer::FeatureExtractionModelTransformer(Input in,
|
Chris@859
|
53 const Transforms &transforms) :
|
Chris@849
|
54 ModelTransformer(in, transforms),
|
Chris@859
|
55 m_plugin(0)
|
Chris@849
|
56 {
|
Chris@849
|
57 // SVDEBUG << "FeatureExtractionModelTransformer::FeatureExtractionModelTransformer: plugin " << pluginId << ", outputName " << m_transform.getOutput() << endl;
|
Chris@849
|
58
|
Chris@849
|
59 initialise();
|
Chris@849
|
60 }
|
Chris@849
|
61
|
Chris@849
|
62 static bool
|
Chris@849
|
63 areTransformsSimilar(const Transform &t1, const Transform &t2)
|
Chris@849
|
64 {
|
Chris@849
|
65 Transform t2o(t2);
|
Chris@849
|
66 t2o.setOutput(t1.getOutput());
|
Chris@849
|
67 return t1 == t2o;
|
Chris@849
|
68 }
|
Chris@849
|
69
|
Chris@849
|
70 bool
|
Chris@849
|
71 FeatureExtractionModelTransformer::initialise()
|
Chris@849
|
72 {
|
Chris@849
|
73 // All transforms must use the same plugin, parameters, and
|
Chris@849
|
74 // inputs: they can differ only in choice of plugin output. So we
|
Chris@849
|
75 // initialise based purely on the first transform in the list (but
|
Chris@849
|
76 // first check that they are actually similar as promised)
|
Chris@849
|
77
|
Chris@849
|
78 for (int j = 1; j < (int)m_transforms.size(); ++j) {
|
Chris@849
|
79 if (!areTransformsSimilar(m_transforms[0], m_transforms[j])) {
|
Chris@849
|
80 m_message = tr("Transforms supplied to a single FeatureExtractionModelTransformer instance must be similar in every respect except plugin output");
|
Chris@849
|
81 return false;
|
Chris@849
|
82 }
|
Chris@849
|
83 }
|
Chris@849
|
84
|
Chris@849
|
85 Transform primaryTransform = m_transforms[0];
|
Chris@849
|
86
|
Chris@849
|
87 QString pluginId = primaryTransform.getPluginIdentifier();
|
Chris@320
|
88
|
Chris@320
|
89 FeatureExtractionPluginFactory *factory =
|
Chris@320
|
90 FeatureExtractionPluginFactory::instanceFor(pluginId);
|
Chris@320
|
91
|
Chris@320
|
92 if (!factory) {
|
Chris@361
|
93 m_message = tr("No factory available for feature extraction plugin id \"%1\" (unknown plugin type, or internal error?)").arg(pluginId);
|
Chris@849
|
94 return false;
|
Chris@320
|
95 }
|
Chris@320
|
96
|
Chris@350
|
97 DenseTimeValueModel *input = getConformingInput();
|
Chris@350
|
98 if (!input) {
|
Chris@361
|
99 m_message = tr("Input model for feature extraction plugin \"%1\" is of wrong type (internal error?)").arg(pluginId);
|
Chris@849
|
100 return false;
|
Chris@350
|
101 }
|
Chris@320
|
102
|
Chris@1039
|
103 m_plugin = factory->instantiatePlugin(pluginId, float(input->getSampleRate()));
|
Chris@320
|
104 if (!m_plugin) {
|
Chris@361
|
105 m_message = tr("Failed to instantiate plugin \"%1\"").arg(pluginId);
|
Chris@849
|
106 return false;
|
Chris@320
|
107 }
|
Chris@320
|
108
|
Chris@350
|
109 TransformFactory::getInstance()->makeContextConsistentWithPlugin
|
Chris@849
|
110 (primaryTransform, m_plugin);
|
Chris@343
|
111
|
Chris@350
|
112 TransformFactory::getInstance()->setPluginParameters
|
Chris@849
|
113 (primaryTransform, m_plugin);
|
Chris@320
|
114
|
Chris@930
|
115 int channelCount = input->getChannelCount();
|
Chris@930
|
116 if ((int)m_plugin->getMaxChannelCount() < channelCount) {
|
Chris@320
|
117 channelCount = 1;
|
Chris@320
|
118 }
|
Chris@930
|
119 if ((int)m_plugin->getMinChannelCount() > channelCount) {
|
Chris@361
|
120 m_message = tr("Cannot provide enough channels to feature extraction plugin \"%1\" (plugin min is %2, max %3; input model has %4)")
|
Chris@361
|
121 .arg(pluginId)
|
Chris@361
|
122 .arg(m_plugin->getMinChannelCount())
|
Chris@361
|
123 .arg(m_plugin->getMaxChannelCount())
|
Chris@361
|
124 .arg(input->getChannelCount());
|
Chris@849
|
125 return false;
|
Chris@320
|
126 }
|
Chris@320
|
127
|
Chris@690
|
128 SVDEBUG << "Initialising feature extraction plugin with channels = "
|
Chris@849
|
129 << channelCount << ", step = " << primaryTransform.getStepSize()
|
Chris@849
|
130 << ", block = " << primaryTransform.getBlockSize() << endl;
|
Chris@320
|
131
|
Chris@320
|
132 if (!m_plugin->initialise(channelCount,
|
Chris@849
|
133 primaryTransform.getStepSize(),
|
Chris@849
|
134 primaryTransform.getBlockSize())) {
|
Chris@361
|
135
|
Chris@930
|
136 int pstep = primaryTransform.getStepSize();
|
Chris@930
|
137 int pblock = primaryTransform.getBlockSize();
|
Chris@361
|
138
|
Chris@850
|
139 ///!!! hang on, this isn't right -- we're modifying a copy
|
Chris@849
|
140 primaryTransform.setStepSize(0);
|
Chris@849
|
141 primaryTransform.setBlockSize(0);
|
Chris@361
|
142 TransformFactory::getInstance()->makeContextConsistentWithPlugin
|
Chris@849
|
143 (primaryTransform, m_plugin);
|
Chris@361
|
144
|
Chris@849
|
145 if (primaryTransform.getStepSize() != pstep ||
|
Chris@849
|
146 primaryTransform.getBlockSize() != pblock) {
|
Chris@361
|
147
|
Chris@361
|
148 if (!m_plugin->initialise(channelCount,
|
Chris@849
|
149 primaryTransform.getStepSize(),
|
Chris@849
|
150 primaryTransform.getBlockSize())) {
|
Chris@361
|
151
|
Chris@361
|
152 m_message = tr("Failed to initialise feature extraction plugin \"%1\"").arg(pluginId);
|
Chris@849
|
153 return false;
|
Chris@361
|
154
|
Chris@361
|
155 } else {
|
Chris@361
|
156
|
Chris@361
|
157 m_message = tr("Feature extraction plugin \"%1\" rejected the given step and block sizes (%2 and %3); using plugin defaults (%4 and %5) instead")
|
Chris@361
|
158 .arg(pluginId)
|
Chris@361
|
159 .arg(pstep)
|
Chris@361
|
160 .arg(pblock)
|
Chris@849
|
161 .arg(primaryTransform.getStepSize())
|
Chris@849
|
162 .arg(primaryTransform.getBlockSize());
|
Chris@361
|
163 }
|
Chris@361
|
164
|
Chris@361
|
165 } else {
|
Chris@361
|
166
|
Chris@361
|
167 m_message = tr("Failed to initialise feature extraction plugin \"%1\"").arg(pluginId);
|
Chris@849
|
168 return false;
|
Chris@361
|
169 }
|
Chris@320
|
170 }
|
Chris@320
|
171
|
Chris@849
|
172 if (primaryTransform.getPluginVersion() != "") {
|
Chris@366
|
173 QString pv = QString("%1").arg(m_plugin->getPluginVersion());
|
Chris@849
|
174 if (pv != primaryTransform.getPluginVersion()) {
|
Chris@366
|
175 QString vm = tr("Transform was configured for version %1 of plugin \"%2\", but the plugin being used is version %3")
|
Chris@849
|
176 .arg(primaryTransform.getPluginVersion())
|
Chris@366
|
177 .arg(pluginId)
|
Chris@366
|
178 .arg(pv);
|
Chris@366
|
179 if (m_message != "") {
|
Chris@366
|
180 m_message = QString("%1; %2").arg(vm).arg(m_message);
|
Chris@366
|
181 } else {
|
Chris@366
|
182 m_message = vm;
|
Chris@366
|
183 }
|
Chris@366
|
184 }
|
Chris@366
|
185 }
|
Chris@366
|
186
|
Chris@320
|
187 Vamp::Plugin::OutputList outputs = m_plugin->getOutputDescriptors();
|
Chris@320
|
188
|
Chris@320
|
189 if (outputs.empty()) {
|
Chris@361
|
190 m_message = tr("Plugin \"%1\" has no outputs").arg(pluginId);
|
Chris@849
|
191 return false;
|
Chris@320
|
192 }
|
Chris@320
|
193
|
Chris@849
|
194 for (int j = 0; j < (int)m_transforms.size(); ++j) {
|
Chris@849
|
195
|
Chris@849
|
196 for (int i = 0; i < (int)outputs.size(); ++i) {
|
Chris@849
|
197 // SVDEBUG << "comparing output " << i << " name \"" << outputs[i].identifier << "\" with expected \"" << m_transform.getOutput() << "\"" << endl;
|
Chris@849
|
198 if (m_transforms[j].getOutput() == "" ||
|
Chris@849
|
199 outputs[i].identifier == m_transforms[j].getOutput().toStdString()) {
|
Chris@849
|
200 m_outputNos.push_back(i);
|
Chris@849
|
201 m_descriptors.push_back(new Vamp::Plugin::OutputDescriptor(outputs[i]));
|
Chris@849
|
202 m_fixedRateFeatureNos.push_back(-1); // we increment before use
|
Chris@849
|
203 break;
|
Chris@849
|
204 }
|
Chris@849
|
205 }
|
Chris@849
|
206
|
Chris@930
|
207 if ((int)m_descriptors.size() <= j) {
|
Chris@849
|
208 m_message = tr("Plugin \"%1\" has no output named \"%2\"")
|
Chris@849
|
209 .arg(pluginId)
|
Chris@849
|
210 .arg(m_transforms[j].getOutput());
|
Chris@849
|
211 return false;
|
Chris@849
|
212 }
|
Chris@320
|
213 }
|
Chris@320
|
214
|
Chris@849
|
215 for (int j = 0; j < (int)m_transforms.size(); ++j) {
|
Chris@876
|
216 createOutputModels(j);
|
Chris@849
|
217 }
|
Chris@849
|
218
|
Chris@849
|
219 return true;
|
Chris@558
|
220 }
|
Chris@558
|
221
|
Chris@558
|
222 void
|
Chris@876
|
223 FeatureExtractionModelTransformer::createOutputModels(int n)
|
Chris@558
|
224 {
|
Chris@558
|
225 DenseTimeValueModel *input = getConformingInput();
|
Chris@558
|
226
|
Chris@843
|
227 // cerr << "FeatureExtractionModelTransformer::createOutputModel: sample type " << m_descriptor->sampleType << ", rate " << m_descriptor->sampleRate << endl;
|
Chris@712
|
228
|
Chris@849
|
229 PluginRDFDescription description(m_transforms[n].getPluginIdentifier());
|
Chris@849
|
230 QString outputId = m_transforms[n].getOutput();
|
Chris@558
|
231
|
Chris@320
|
232 int binCount = 1;
|
Chris@320
|
233 float minValue = 0.0, maxValue = 0.0;
|
Chris@320
|
234 bool haveExtents = false;
|
Chris@876
|
235 bool haveBinCount = m_descriptors[n]->hasFixedBinCount;
|
Chris@876
|
236
|
Chris@876
|
237 if (haveBinCount) {
|
Chris@1039
|
238 binCount = (int)m_descriptors[n]->binCount;
|
Chris@320
|
239 }
|
Chris@320
|
240
|
Chris@876
|
241 m_needAdditionalModels[n] = false;
|
Chris@876
|
242
|
Chris@843
|
243 // cerr << "FeatureExtractionModelTransformer: output bin count "
|
Chris@843
|
244 // << binCount << endl;
|
Chris@320
|
245
|
Chris@849
|
246 if (binCount > 0 && m_descriptors[n]->hasKnownExtents) {
|
Chris@849
|
247 minValue = m_descriptors[n]->minValue;
|
Chris@849
|
248 maxValue = m_descriptors[n]->maxValue;
|
Chris@320
|
249 haveExtents = true;
|
Chris@320
|
250 }
|
Chris@320
|
251
|
Chris@930
|
252 int modelRate = input->getSampleRate();
|
Chris@930
|
253 int modelResolution = 1;
|
Chris@712
|
254
|
Chris@849
|
255 if (m_descriptors[n]->sampleType !=
|
Chris@785
|
256 Vamp::Plugin::OutputDescriptor::OneSamplePerStep) {
|
Chris@849
|
257 if (m_descriptors[n]->sampleRate > input->getSampleRate()) {
|
Chris@843
|
258 cerr << "WARNING: plugin reports output sample rate as "
|
Chris@849
|
259 << m_descriptors[n]->sampleRate << " (can't display features with finer resolution than the input rate of " << input->getSampleRate() << ")" << endl;
|
Chris@785
|
260 }
|
Chris@785
|
261 }
|
Chris@785
|
262
|
Chris@849
|
263 switch (m_descriptors[n]->sampleType) {
|
Chris@320
|
264
|
Chris@320
|
265 case Vamp::Plugin::OutputDescriptor::VariableSampleRate:
|
Chris@849
|
266 if (m_descriptors[n]->sampleRate != 0.0) {
|
Chris@1039
|
267 modelResolution = int(round(float(modelRate) /
|
Chris@1039
|
268 m_descriptors[n]->sampleRate));
|
Chris@320
|
269 }
|
Chris@320
|
270 break;
|
Chris@320
|
271
|
Chris@320
|
272 case Vamp::Plugin::OutputDescriptor::OneSamplePerStep:
|
Chris@849
|
273 modelResolution = m_transforms[n].getStepSize();
|
Chris@320
|
274 break;
|
Chris@320
|
275
|
Chris@320
|
276 case Vamp::Plugin::OutputDescriptor::FixedSampleRate:
|
Chris@451
|
277 //!!! SV doesn't actually support display of models that have
|
Chris@451
|
278 //!!! different underlying rates together -- so we always set
|
Chris@451
|
279 //!!! the model rate to be the input model's rate, and adjust
|
Chris@451
|
280 //!!! the resolution appropriately. We can't properly display
|
Chris@451
|
281 //!!! data with a higher resolution than the base model at all
|
Chris@849
|
282 if (m_descriptors[n]->sampleRate > input->getSampleRate()) {
|
Chris@451
|
283 modelResolution = 1;
|
Chris@451
|
284 } else {
|
Chris@1039
|
285 modelResolution = int(round(float(modelRate) /
|
Chris@1039
|
286 m_descriptors[n]->sampleRate));
|
Chris@451
|
287 }
|
Chris@320
|
288 break;
|
Chris@320
|
289 }
|
Chris@320
|
290
|
Chris@441
|
291 bool preDurationPlugin = (m_plugin->getVampApiVersion() < 2);
|
Chris@441
|
292
|
Chris@849
|
293 Model *out = 0;
|
Chris@849
|
294
|
Chris@441
|
295 if (binCount == 0 &&
|
Chris@849
|
296 (preDurationPlugin || !m_descriptors[n]->hasDuration)) {
|
Chris@320
|
297
|
Chris@445
|
298 // Anything with no value and no duration is an instant
|
Chris@445
|
299
|
Chris@849
|
300 out = new SparseOneDimensionalModel(modelRate, modelResolution, false);
|
Chris@558
|
301 QString outputEventTypeURI = description.getOutputEventTypeURI(outputId);
|
Chris@849
|
302 out->setRDFTypeURI(outputEventTypeURI);
|
Chris@558
|
303
|
Chris@441
|
304 } else if ((preDurationPlugin && binCount > 1 &&
|
Chris@849
|
305 (m_descriptors[n]->sampleType ==
|
Chris@441
|
306 Vamp::Plugin::OutputDescriptor::VariableSampleRate)) ||
|
Chris@849
|
307 (!preDurationPlugin && m_descriptors[n]->hasDuration)) {
|
Chris@441
|
308
|
Chris@441
|
309 // For plugins using the old v1 API without explicit duration,
|
Chris@441
|
310 // we treat anything that has multiple bins (i.e. that has the
|
Chris@441
|
311 // potential to have value and duration) and a variable sample
|
Chris@441
|
312 // rate as a note model, taking its values as pitch, duration
|
Chris@441
|
313 // and velocity (if present) respectively. This is the same
|
Chris@441
|
314 // behaviour as always applied by SV to these plugins in the
|
Chris@441
|
315 // past.
|
Chris@441
|
316
|
Chris@441
|
317 // For plugins with the newer API, we treat anything with
|
Chris@441
|
318 // duration as either a note model with pitch and velocity, or
|
Chris@441
|
319 // a region model.
|
Chris@441
|
320
|
Chris@441
|
321 // How do we know whether it's an interval or note model?
|
Chris@441
|
322 // What's the essential difference? Is a note model any
|
Chris@441
|
323 // interval model using a Hz or "MIDI pitch" scale? There
|
Chris@441
|
324 // isn't really a reliable test for "MIDI pitch"... Does a
|
Chris@441
|
325 // note model always have velocity? This is a good question
|
Chris@441
|
326 // to be addressed by accompanying RDF, but for the moment we
|
Chris@441
|
327 // will do the following...
|
Chris@441
|
328
|
Chris@441
|
329 bool isNoteModel = false;
|
Chris@441
|
330
|
Chris@441
|
331 // Regions have only value (and duration -- we can't extract a
|
Chris@441
|
332 // region model from an old-style plugin that doesn't support
|
Chris@441
|
333 // duration)
|
Chris@441
|
334 if (binCount > 1) isNoteModel = true;
|
Chris@441
|
335
|
Chris@595
|
336 // Regions do not have units of Hz or MIDI things (a sweeping
|
Chris@595
|
337 // assumption!)
|
Chris@849
|
338 if (m_descriptors[n]->unit == "Hz" ||
|
Chris@849
|
339 m_descriptors[n]->unit.find("MIDI") != std::string::npos ||
|
Chris@849
|
340 m_descriptors[n]->unit.find("midi") != std::string::npos) {
|
Chris@595
|
341 isNoteModel = true;
|
Chris@595
|
342 }
|
Chris@441
|
343
|
Chris@441
|
344 // If we had a "sparse 3D model", we would have the additional
|
Chris@441
|
345 // problem of determining whether to use that here (if bin
|
Chris@441
|
346 // count > 1). But we don't.
|
Chris@441
|
347
|
Chris@859
|
348 QSettings settings;
|
Chris@859
|
349 settings.beginGroup("Transformer");
|
Chris@859
|
350 bool flexi = settings.value("use-flexi-note-model", false).toBool();
|
Chris@859
|
351 settings.endGroup();
|
Chris@859
|
352
|
Chris@859
|
353 cerr << "flexi = " << flexi << endl;
|
Chris@859
|
354
|
Chris@859
|
355 if (isNoteModel && !flexi) {
|
Chris@441
|
356
|
Chris@441
|
357 NoteModel *model;
|
Chris@441
|
358 if (haveExtents) {
|
Chris@859
|
359 model = new NoteModel
|
Chris@859
|
360 (modelRate, modelResolution, minValue, maxValue, false);
|
Chris@441
|
361 } else {
|
Chris@859
|
362 model = new NoteModel
|
Chris@859
|
363 (modelRate, modelResolution, false);
|
gyorgyf@786
|
364 }
|
Chris@849
|
365 model->setScaleUnits(m_descriptors[n]->unit.c_str());
|
Chris@849
|
366 out = model;
|
gyorgyf@786
|
367
|
Chris@859
|
368 } else if (isNoteModel && flexi) {
|
gyorgyf@786
|
369
|
gyorgyf@786
|
370 FlexiNoteModel *model;
|
gyorgyf@786
|
371 if (haveExtents) {
|
Chris@859
|
372 model = new FlexiNoteModel
|
Chris@859
|
373 (modelRate, modelResolution, minValue, maxValue, false);
|
gyorgyf@786
|
374 } else {
|
Chris@859
|
375 model = new FlexiNoteModel
|
Chris@859
|
376 (modelRate, modelResolution, false);
|
Chris@441
|
377 }
|
Chris@849
|
378 model->setScaleUnits(m_descriptors[n]->unit.c_str());
|
Chris@849
|
379 out = model;
|
Chris@441
|
380
|
Chris@441
|
381 } else {
|
Chris@441
|
382
|
Chris@441
|
383 RegionModel *model;
|
Chris@441
|
384 if (haveExtents) {
|
Chris@441
|
385 model = new RegionModel
|
Chris@441
|
386 (modelRate, modelResolution, minValue, maxValue, false);
|
Chris@441
|
387 } else {
|
Chris@441
|
388 model = new RegionModel
|
Chris@441
|
389 (modelRate, modelResolution, false);
|
Chris@441
|
390 }
|
Chris@849
|
391 model->setScaleUnits(m_descriptors[n]->unit.c_str());
|
Chris@849
|
392 out = model;
|
Chris@441
|
393 }
|
Chris@441
|
394
|
Chris@558
|
395 QString outputEventTypeURI = description.getOutputEventTypeURI(outputId);
|
Chris@849
|
396 out->setRDFTypeURI(outputEventTypeURI);
|
Chris@558
|
397
|
Chris@876
|
398 } else if (binCount == 1 ||
|
Chris@849
|
399 (m_descriptors[n]->sampleType ==
|
Chris@441
|
400 Vamp::Plugin::OutputDescriptor::VariableSampleRate)) {
|
Chris@441
|
401
|
Chris@441
|
402 // Anything that is not a 1D, note, or interval model and that
|
Chris@441
|
403 // has only one value per result must be a sparse time value
|
Chris@441
|
404 // model.
|
Chris@441
|
405
|
Chris@441
|
406 // Anything that is not a 1D, note, or interval model and that
|
Chris@876
|
407 // has a variable sample rate is treated as a set of sparse
|
Chris@876
|
408 // time value models, one per output bin, because we lack a
|
Chris@441
|
409 // sparse 3D model.
|
Chris@320
|
410
|
Chris@876
|
411 // Anything that is not a 1D, note, or interval model and that
|
Chris@876
|
412 // has a fixed sample rate but an unknown number of values per
|
Chris@876
|
413 // result is also treated as a set of sparse time value models.
|
Chris@876
|
414
|
Chris@876
|
415 // For sets of sparse time value models, we create a single
|
Chris@876
|
416 // model first as the "standard" output and then create models
|
Chris@876
|
417 // for bins 1+ in the additional model map (mapping the output
|
Chris@876
|
418 // descriptor to a list of models indexed by bin-1). But we
|
Chris@876
|
419 // don't create the additional models yet, as this case has to
|
Chris@876
|
420 // work even if the number of bins is unknown at this point --
|
Chris@877
|
421 // we create an additional model (copying its parameters from
|
Chris@877
|
422 // the default one) each time a new bin is encountered.
|
Chris@876
|
423
|
Chris@876
|
424 if (!haveBinCount || binCount > 1) {
|
Chris@876
|
425 m_needAdditionalModels[n] = true;
|
Chris@876
|
426 }
|
Chris@876
|
427
|
Chris@320
|
428 SparseTimeValueModel *model;
|
Chris@320
|
429 if (haveExtents) {
|
Chris@320
|
430 model = new SparseTimeValueModel
|
Chris@320
|
431 (modelRate, modelResolution, minValue, maxValue, false);
|
Chris@320
|
432 } else {
|
Chris@320
|
433 model = new SparseTimeValueModel
|
Chris@320
|
434 (modelRate, modelResolution, false);
|
Chris@320
|
435 }
|
Chris@558
|
436
|
Chris@558
|
437 Vamp::Plugin::OutputList outputs = m_plugin->getOutputDescriptors();
|
Chris@849
|
438 model->setScaleUnits(outputs[m_outputNos[n]].unit.c_str());
|
Chris@320
|
439
|
Chris@849
|
440 out = model;
|
Chris@320
|
441
|
Chris@558
|
442 QString outputEventTypeURI = description.getOutputEventTypeURI(outputId);
|
Chris@849
|
443 out->setRDFTypeURI(outputEventTypeURI);
|
Chris@558
|
444
|
Chris@441
|
445 } else {
|
Chris@320
|
446
|
Chris@441
|
447 // Anything that is not a 1D, note, or interval model and that
|
Chris@441
|
448 // has a fixed sample rate and more than one value per result
|
Chris@441
|
449 // must be a dense 3D model.
|
Chris@320
|
450
|
Chris@320
|
451 EditableDenseThreeDimensionalModel *model =
|
Chris@320
|
452 new EditableDenseThreeDimensionalModel
|
Chris@535
|
453 (modelRate, modelResolution, binCount,
|
Chris@535
|
454 EditableDenseThreeDimensionalModel::BasicMultirateCompression,
|
Chris@535
|
455 false);
|
Chris@320
|
456
|
Chris@849
|
457 if (!m_descriptors[n]->binNames.empty()) {
|
Chris@320
|
458 std::vector<QString> names;
|
Chris@930
|
459 for (int i = 0; i < (int)m_descriptors[n]->binNames.size(); ++i) {
|
Chris@849
|
460 names.push_back(m_descriptors[n]->binNames[i].c_str());
|
Chris@320
|
461 }
|
Chris@320
|
462 model->setBinNames(names);
|
Chris@320
|
463 }
|
Chris@320
|
464
|
Chris@849
|
465 out = model;
|
Chris@558
|
466
|
Chris@558
|
467 QString outputSignalTypeURI = description.getOutputSignalTypeURI(outputId);
|
Chris@849
|
468 out->setRDFTypeURI(outputSignalTypeURI);
|
Chris@320
|
469 }
|
Chris@333
|
470
|
Chris@849
|
471 if (out) {
|
Chris@849
|
472 out->setSourceModel(input);
|
Chris@849
|
473 m_outputs.push_back(out);
|
Chris@849
|
474 }
|
Chris@320
|
475 }
|
Chris@320
|
476
|
Chris@331
|
477 FeatureExtractionModelTransformer::~FeatureExtractionModelTransformer()
|
Chris@320
|
478 {
|
Chris@690
|
479 // SVDEBUG << "FeatureExtractionModelTransformer::~FeatureExtractionModelTransformer()" << endl;
|
Chris@320
|
480 delete m_plugin;
|
Chris@930
|
481 for (int j = 0; j < (int)m_descriptors.size(); ++j) {
|
Chris@850
|
482 delete m_descriptors[j];
|
Chris@850
|
483 }
|
Chris@320
|
484 }
|
Chris@320
|
485
|
Chris@876
|
486 FeatureExtractionModelTransformer::Models
|
Chris@876
|
487 FeatureExtractionModelTransformer::getAdditionalOutputModels()
|
Chris@876
|
488 {
|
Chris@876
|
489 Models mm;
|
Chris@876
|
490 for (AdditionalModelMap::iterator i = m_additionalModels.begin();
|
Chris@876
|
491 i != m_additionalModels.end(); ++i) {
|
Chris@876
|
492 for (std::map<int, SparseTimeValueModel *>::iterator j =
|
Chris@876
|
493 i->second.begin();
|
Chris@876
|
494 j != i->second.end(); ++j) {
|
Chris@876
|
495 SparseTimeValueModel *m = j->second;
|
Chris@876
|
496 if (m) mm.push_back(m);
|
Chris@876
|
497 }
|
Chris@876
|
498 }
|
Chris@876
|
499 return mm;
|
Chris@876
|
500 }
|
Chris@876
|
501
|
Chris@877
|
502 bool
|
Chris@877
|
503 FeatureExtractionModelTransformer::willHaveAdditionalOutputModels()
|
Chris@877
|
504 {
|
Chris@877
|
505 for (std::map<int, bool>::const_iterator i =
|
Chris@877
|
506 m_needAdditionalModels.begin();
|
Chris@877
|
507 i != m_needAdditionalModels.end(); ++i) {
|
Chris@877
|
508 if (i->second) return true;
|
Chris@877
|
509 }
|
Chris@877
|
510 return false;
|
Chris@877
|
511 }
|
Chris@877
|
512
|
Chris@876
|
513 SparseTimeValueModel *
|
Chris@876
|
514 FeatureExtractionModelTransformer::getAdditionalModel(int n, int binNo)
|
Chris@876
|
515 {
|
Chris@893
|
516 // std::cerr << "getAdditionalModel(" << n << ", " << binNo << ")" << std::endl;
|
Chris@876
|
517
|
Chris@876
|
518 if (binNo == 0) {
|
Chris@876
|
519 std::cerr << "Internal error: binNo == 0 in getAdditionalModel (should be using primary model)" << std::endl;
|
Chris@876
|
520 return 0;
|
Chris@876
|
521 }
|
Chris@876
|
522
|
Chris@876
|
523 if (!m_needAdditionalModels[n]) return 0;
|
Chris@876
|
524 if (!isOutput<SparseTimeValueModel>(n)) return 0;
|
Chris@876
|
525 if (m_additionalModels[n][binNo]) return m_additionalModels[n][binNo];
|
Chris@876
|
526
|
Chris@876
|
527 std::cerr << "getAdditionalModel(" << n << ", " << binNo << "): creating" << std::endl;
|
Chris@876
|
528
|
Chris@876
|
529 SparseTimeValueModel *baseModel = getConformingOutput<SparseTimeValueModel>(n);
|
Chris@876
|
530 if (!baseModel) return 0;
|
Chris@876
|
531
|
Chris@876
|
532 std::cerr << "getAdditionalModel(" << n << ", " << binNo << "): (from " << baseModel << ")" << std::endl;
|
Chris@876
|
533
|
Chris@876
|
534 SparseTimeValueModel *additional =
|
Chris@876
|
535 new SparseTimeValueModel(baseModel->getSampleRate(),
|
Chris@876
|
536 baseModel->getResolution(),
|
Chris@876
|
537 baseModel->getValueMinimum(),
|
Chris@876
|
538 baseModel->getValueMaximum(),
|
Chris@876
|
539 false);
|
Chris@876
|
540
|
Chris@876
|
541 additional->setScaleUnits(baseModel->getScaleUnits());
|
Chris@876
|
542 additional->setRDFTypeURI(baseModel->getRDFTypeURI());
|
Chris@876
|
543
|
Chris@876
|
544 m_additionalModels[n][binNo] = additional;
|
Chris@876
|
545 return additional;
|
Chris@876
|
546 }
|
Chris@876
|
547
|
Chris@320
|
548 DenseTimeValueModel *
|
Chris@350
|
549 FeatureExtractionModelTransformer::getConformingInput()
|
Chris@320
|
550 {
|
Chris@690
|
551 // SVDEBUG << "FeatureExtractionModelTransformer::getConformingInput: input model is " << getInputModel() << endl;
|
Chris@408
|
552
|
Chris@320
|
553 DenseTimeValueModel *dtvm =
|
Chris@320
|
554 dynamic_cast<DenseTimeValueModel *>(getInputModel());
|
Chris@320
|
555 if (!dtvm) {
|
Chris@690
|
556 SVDEBUG << "FeatureExtractionModelTransformer::getConformingInput: WARNING: Input model is not conformable to DenseTimeValueModel" << endl;
|
Chris@320
|
557 }
|
Chris@320
|
558 return dtvm;
|
Chris@320
|
559 }
|
Chris@320
|
560
|
Chris@320
|
561 void
|
Chris@331
|
562 FeatureExtractionModelTransformer::run()
|
Chris@320
|
563 {
|
Chris@350
|
564 DenseTimeValueModel *input = getConformingInput();
|
Chris@320
|
565 if (!input) return;
|
Chris@320
|
566
|
Chris@849
|
567 if (m_outputs.empty()) return;
|
Chris@320
|
568
|
Chris@850
|
569 Transform primaryTransform = m_transforms[0];
|
Chris@850
|
570
|
Chris@497
|
571 while (!input->isReady() && !m_abandoned) {
|
Chris@877
|
572 cerr << "FeatureExtractionModelTransformer::run: Waiting for input model to be ready..." << endl;
|
Chris@497
|
573 usleep(500000);
|
Chris@320
|
574 }
|
Chris@497
|
575 if (m_abandoned) return;
|
Chris@320
|
576
|
Chris@930
|
577 int sampleRate = input->getSampleRate();
|
Chris@320
|
578
|
Chris@930
|
579 int channelCount = input->getChannelCount();
|
Chris@930
|
580 if ((int)m_plugin->getMaxChannelCount() < channelCount) {
|
Chris@320
|
581 channelCount = 1;
|
Chris@320
|
582 }
|
Chris@320
|
583
|
Chris@320
|
584 float **buffers = new float*[channelCount];
|
Chris@930
|
585 for (int ch = 0; ch < channelCount; ++ch) {
|
Chris@850
|
586 buffers[ch] = new float[primaryTransform.getBlockSize() + 2];
|
Chris@320
|
587 }
|
Chris@320
|
588
|
Chris@930
|
589 int stepSize = primaryTransform.getStepSize();
|
Chris@930
|
590 int blockSize = primaryTransform.getBlockSize();
|
Chris@350
|
591
|
Chris@320
|
592 bool frequencyDomain = (m_plugin->getInputDomain() ==
|
Chris@320
|
593 Vamp::Plugin::FrequencyDomain);
|
Chris@320
|
594 std::vector<FFTModel *> fftModels;
|
Chris@320
|
595
|
Chris@320
|
596 if (frequencyDomain) {
|
Chris@930
|
597 for (int ch = 0; ch < channelCount; ++ch) {
|
Chris@320
|
598 FFTModel *model = new FFTModel
|
Chris@350
|
599 (getConformingInput(),
|
Chris@350
|
600 channelCount == 1 ? m_input.getChannel() : ch,
|
Chris@850
|
601 primaryTransform.getWindowType(),
|
Chris@350
|
602 blockSize,
|
Chris@350
|
603 stepSize,
|
Chris@350
|
604 blockSize,
|
Chris@334
|
605 false,
|
Chris@334
|
606 StorageAdviser::PrecisionCritical);
|
Chris@320
|
607 if (!model->isOK()) {
|
Chris@320
|
608 delete model;
|
Chris@850
|
609 for (int j = 0; j < (int)m_outputNos.size(); ++j) {
|
Chris@850
|
610 setCompletion(j, 100);
|
Chris@850
|
611 }
|
Chris@387
|
612 //!!! need a better way to handle this -- previously we were using a QMessageBox but that isn't an appropriate thing to do here either
|
Chris@387
|
613 throw AllocationFailed("Failed to create the FFT model for this feature extraction model transformer");
|
Chris@320
|
614 }
|
Chris@320
|
615 model->resume();
|
Chris@320
|
616 fftModels.push_back(model);
|
Chris@320
|
617 }
|
Chris@320
|
618 }
|
Chris@320
|
619
|
Chris@350
|
620 long startFrame = m_input.getModel()->getStartFrame();
|
Chris@350
|
621 long endFrame = m_input.getModel()->getEndFrame();
|
Chris@320
|
622
|
Chris@850
|
623 RealTime contextStartRT = primaryTransform.getStartTime();
|
Chris@850
|
624 RealTime contextDurationRT = primaryTransform.getDuration();
|
Chris@350
|
625
|
Chris@350
|
626 long contextStart =
|
Chris@350
|
627 RealTime::realTime2Frame(contextStartRT, sampleRate);
|
Chris@350
|
628
|
Chris@350
|
629 long contextDuration =
|
Chris@350
|
630 RealTime::realTime2Frame(contextDurationRT, sampleRate);
|
Chris@320
|
631
|
Chris@320
|
632 if (contextStart == 0 || contextStart < startFrame) {
|
Chris@320
|
633 contextStart = startFrame;
|
Chris@320
|
634 }
|
Chris@320
|
635
|
Chris@320
|
636 if (contextDuration == 0) {
|
Chris@320
|
637 contextDuration = endFrame - contextStart;
|
Chris@320
|
638 }
|
Chris@320
|
639 if (contextStart + contextDuration > endFrame) {
|
Chris@320
|
640 contextDuration = endFrame - contextStart;
|
Chris@320
|
641 }
|
Chris@320
|
642
|
Chris@1039
|
643 sv_frame_t blockFrame = contextStart;
|
Chris@320
|
644
|
Chris@320
|
645 long prevCompletion = 0;
|
Chris@320
|
646
|
Chris@850
|
647 for (int j = 0; j < (int)m_outputNos.size(); ++j) {
|
Chris@850
|
648 setCompletion(j, 0);
|
Chris@850
|
649 }
|
Chris@320
|
650
|
Chris@556
|
651 float *reals = 0;
|
Chris@556
|
652 float *imaginaries = 0;
|
Chris@556
|
653 if (frequencyDomain) {
|
Chris@556
|
654 reals = new float[blockSize/2 + 1];
|
Chris@556
|
655 imaginaries = new float[blockSize/2 + 1];
|
Chris@556
|
656 }
|
Chris@556
|
657
|
Chris@678
|
658 QString error = "";
|
Chris@678
|
659
|
Chris@320
|
660 while (!m_abandoned) {
|
Chris@320
|
661
|
Chris@320
|
662 if (frequencyDomain) {
|
Chris@350
|
663 if (blockFrame - int(blockSize)/2 >
|
Chris@320
|
664 contextStart + contextDuration) break;
|
Chris@320
|
665 } else {
|
Chris@320
|
666 if (blockFrame >=
|
Chris@320
|
667 contextStart + contextDuration) break;
|
Chris@320
|
668 }
|
Chris@320
|
669
|
Chris@690
|
670 // SVDEBUG << "FeatureExtractionModelTransformer::run: blockFrame "
|
Chris@320
|
671 // << blockFrame << ", endFrame " << endFrame << ", blockSize "
|
Chris@687
|
672 // << blockSize << endl;
|
Chris@320
|
673
|
Chris@1039
|
674 int completion = int
|
Chris@1039
|
675 ((((blockFrame - contextStart) / stepSize) * 99) /
|
Chris@1039
|
676 (contextDuration / stepSize + 1));
|
Chris@320
|
677
|
Chris@350
|
678 // channelCount is either m_input.getModel()->channelCount or 1
|
Chris@320
|
679
|
Chris@363
|
680 if (frequencyDomain) {
|
Chris@930
|
681 for (int ch = 0; ch < channelCount; ++ch) {
|
Chris@1039
|
682 int column = int((blockFrame - startFrame) / stepSize);
|
Chris@1008
|
683 if (fftModels[ch]->getValuesAt(column, reals, imaginaries)) {
|
Chris@1008
|
684 for (int i = 0; i <= blockSize/2; ++i) {
|
Chris@1008
|
685 buffers[ch][i*2] = reals[i];
|
Chris@1008
|
686 buffers[ch][i*2+1] = imaginaries[i];
|
Chris@1008
|
687 }
|
Chris@1008
|
688 } else {
|
Chris@1008
|
689 for (int i = 0; i <= blockSize/2; ++i) {
|
Chris@1008
|
690 buffers[ch][i*2] = 0.f;
|
Chris@1008
|
691 buffers[ch][i*2+1] = 0.f;
|
Chris@1008
|
692 }
|
Chris@1008
|
693 }
|
Chris@678
|
694 error = fftModels[ch]->getError();
|
Chris@678
|
695 if (error != "") {
|
Chris@843
|
696 cerr << "FeatureExtractionModelTransformer::run: Abandoning, error is " << error << endl;
|
Chris@678
|
697 m_abandoned = true;
|
Chris@678
|
698 m_message = error;
|
Chris@678
|
699 }
|
Chris@363
|
700 }
|
Chris@363
|
701 } else {
|
Chris@363
|
702 getFrames(channelCount, blockFrame, blockSize, buffers);
|
Chris@320
|
703 }
|
Chris@320
|
704
|
Chris@497
|
705 if (m_abandoned) break;
|
Chris@497
|
706
|
Chris@320
|
707 Vamp::Plugin::FeatureSet features = m_plugin->process
|
Chris@320
|
708 (buffers, Vamp::RealTime::frame2RealTime(blockFrame, sampleRate));
|
Chris@320
|
709
|
Chris@497
|
710 if (m_abandoned) break;
|
Chris@497
|
711
|
Chris@850
|
712 for (int j = 0; j < (int)m_outputNos.size(); ++j) {
|
Chris@930
|
713 for (int fi = 0; fi < (int)features[m_outputNos[j]].size(); ++fi) {
|
Chris@850
|
714 Vamp::Plugin::Feature feature = features[m_outputNos[j]][fi];
|
Chris@850
|
715 addFeature(j, blockFrame, feature);
|
Chris@850
|
716 }
|
Chris@850
|
717 }
|
Chris@320
|
718
|
Chris@320
|
719 if (blockFrame == contextStart || completion > prevCompletion) {
|
Chris@850
|
720 for (int j = 0; j < (int)m_outputNos.size(); ++j) {
|
Chris@850
|
721 setCompletion(j, completion);
|
Chris@850
|
722 }
|
Chris@320
|
723 prevCompletion = completion;
|
Chris@320
|
724 }
|
Chris@320
|
725
|
Chris@350
|
726 blockFrame += stepSize;
|
Chris@320
|
727 }
|
Chris@320
|
728
|
Chris@497
|
729 if (!m_abandoned) {
|
Chris@497
|
730 Vamp::Plugin::FeatureSet features = m_plugin->getRemainingFeatures();
|
Chris@320
|
731
|
Chris@850
|
732 for (int j = 0; j < (int)m_outputNos.size(); ++j) {
|
Chris@930
|
733 for (int fi = 0; fi < (int)features[m_outputNos[j]].size(); ++fi) {
|
Chris@850
|
734 Vamp::Plugin::Feature feature = features[m_outputNos[j]][fi];
|
Chris@850
|
735 addFeature(j, blockFrame, feature);
|
Chris@850
|
736 }
|
Chris@497
|
737 }
|
Chris@497
|
738 }
|
Chris@320
|
739
|
Chris@850
|
740 for (int j = 0; j < (int)m_outputNos.size(); ++j) {
|
Chris@850
|
741 setCompletion(j, 100);
|
Chris@850
|
742 }
|
Chris@320
|
743
|
Chris@320
|
744 if (frequencyDomain) {
|
Chris@930
|
745 for (int ch = 0; ch < channelCount; ++ch) {
|
Chris@320
|
746 delete fftModels[ch];
|
Chris@320
|
747 }
|
Chris@556
|
748 delete[] reals;
|
Chris@556
|
749 delete[] imaginaries;
|
Chris@320
|
750 }
|
Chris@974
|
751
|
Chris@974
|
752 for (int ch = 0; ch < channelCount; ++ch) {
|
Chris@974
|
753 delete[] buffers[ch];
|
Chris@974
|
754 }
|
Chris@974
|
755 delete[] buffers;
|
Chris@320
|
756 }
|
Chris@320
|
757
|
Chris@320
|
758 void
|
Chris@363
|
759 FeatureExtractionModelTransformer::getFrames(int channelCount,
|
Chris@1039
|
760 sv_frame_t startFrame,
|
Chris@1039
|
761 sv_frame_t size,
|
Chris@363
|
762 float **buffers)
|
Chris@320
|
763 {
|
Chris@1039
|
764 sv_frame_t offset = 0;
|
Chris@320
|
765
|
Chris@320
|
766 if (startFrame < 0) {
|
Chris@363
|
767 for (int c = 0; c < channelCount; ++c) {
|
Chris@1039
|
768 for (sv_frame_t i = 0; i < size && startFrame + i < 0; ++i) {
|
Chris@363
|
769 buffers[c][i] = 0.0f;
|
Chris@363
|
770 }
|
Chris@320
|
771 }
|
Chris@320
|
772 offset = -startFrame;
|
Chris@320
|
773 size -= offset;
|
Chris@320
|
774 if (size <= 0) return;
|
Chris@320
|
775 startFrame = 0;
|
Chris@320
|
776 }
|
Chris@320
|
777
|
Chris@350
|
778 DenseTimeValueModel *input = getConformingInput();
|
Chris@350
|
779 if (!input) return;
|
Chris@363
|
780
|
Chris@1039
|
781 sv_frame_t got = 0;
|
Chris@350
|
782
|
Chris@363
|
783 if (channelCount == 1) {
|
Chris@363
|
784
|
Chris@363
|
785 got = input->getData(m_input.getChannel(), startFrame, size,
|
Chris@363
|
786 buffers[0] + offset);
|
Chris@363
|
787
|
Chris@363
|
788 if (m_input.getChannel() == -1 && input->getChannelCount() > 1) {
|
Chris@363
|
789 // use mean instead of sum, as plugin input
|
Chris@363
|
790 float cc = float(input->getChannelCount());
|
Chris@1039
|
791 for (sv_frame_t i = 0; i < size; ++i) {
|
Chris@363
|
792 buffers[0][i + offset] /= cc;
|
Chris@363
|
793 }
|
Chris@363
|
794 }
|
Chris@363
|
795
|
Chris@363
|
796 } else {
|
Chris@363
|
797
|
Chris@363
|
798 float **writebuf = buffers;
|
Chris@363
|
799 if (offset > 0) {
|
Chris@363
|
800 writebuf = new float *[channelCount];
|
Chris@363
|
801 for (int i = 0; i < channelCount; ++i) {
|
Chris@363
|
802 writebuf[i] = buffers[i] + offset;
|
Chris@363
|
803 }
|
Chris@363
|
804 }
|
Chris@363
|
805
|
Chris@363
|
806 got = input->getData(0, channelCount-1, startFrame, size, writebuf);
|
Chris@363
|
807
|
Chris@363
|
808 if (writebuf != buffers) delete[] writebuf;
|
Chris@363
|
809 }
|
Chris@320
|
810
|
Chris@320
|
811 while (got < size) {
|
Chris@363
|
812 for (int c = 0; c < channelCount; ++c) {
|
Chris@363
|
813 buffers[c][got + offset] = 0.0;
|
Chris@363
|
814 }
|
Chris@320
|
815 ++got;
|
Chris@320
|
816 }
|
Chris@320
|
817 }
|
Chris@320
|
818
|
Chris@320
|
819 void
|
Chris@850
|
820 FeatureExtractionModelTransformer::addFeature(int n,
|
Chris@1039
|
821 sv_frame_t blockFrame,
|
Chris@850
|
822 const Vamp::Plugin::Feature &feature)
|
Chris@320
|
823 {
|
Chris@930
|
824 int inputRate = m_input.getModel()->getSampleRate();
|
Chris@320
|
825
|
Chris@843
|
826 // cerr << "FeatureExtractionModelTransformer::addFeature: blockFrame = "
|
Chris@712
|
827 // << blockFrame << ", hasTimestamp = " << feature.hasTimestamp
|
Chris@712
|
828 // << ", timestamp = " << feature.timestamp << ", hasDuration = "
|
Chris@712
|
829 // << feature.hasDuration << ", duration = " << feature.duration
|
Chris@843
|
830 // << endl;
|
Chris@320
|
831
|
Chris@1039
|
832 sv_frame_t frame = blockFrame;
|
Chris@320
|
833
|
Chris@849
|
834 if (m_descriptors[n]->sampleType ==
|
Chris@320
|
835 Vamp::Plugin::OutputDescriptor::VariableSampleRate) {
|
Chris@320
|
836
|
Chris@320
|
837 if (!feature.hasTimestamp) {
|
Chris@843
|
838 cerr
|
Chris@331
|
839 << "WARNING: FeatureExtractionModelTransformer::addFeature: "
|
Chris@320
|
840 << "Feature has variable sample rate but no timestamp!"
|
Chris@843
|
841 << endl;
|
Chris@320
|
842 return;
|
Chris@320
|
843 } else {
|
Chris@320
|
844 frame = Vamp::RealTime::realTime2Frame(feature.timestamp, inputRate);
|
Chris@320
|
845 }
|
Chris@320
|
846
|
Chris@849
|
847 } else if (m_descriptors[n]->sampleType ==
|
Chris@320
|
848 Vamp::Plugin::OutputDescriptor::FixedSampleRate) {
|
Chris@320
|
849
|
Chris@779
|
850 if (!feature.hasTimestamp) {
|
Chris@849
|
851 ++m_fixedRateFeatureNos[n];
|
Chris@779
|
852 } else {
|
Chris@779
|
853 RealTime ts(feature.timestamp.sec, feature.timestamp.nsec);
|
Chris@1039
|
854 m_fixedRateFeatureNos[n] = (int)
|
Chris@849
|
855 lrint(ts.toDouble() * m_descriptors[n]->sampleRate);
|
Chris@779
|
856 }
|
Chris@862
|
857
|
Chris@862
|
858 // cerr << "m_fixedRateFeatureNo = " << m_fixedRateFeatureNo
|
Chris@862
|
859 // << ", m_descriptor->sampleRate = " << m_descriptor->sampleRate
|
Chris@862
|
860 // << ", inputRate = " << inputRate
|
Chris@862
|
861 // << " giving frame = ";
|
Chris@1039
|
862 frame = lrint((double(m_fixedRateFeatureNos[n])
|
Chris@1039
|
863 / m_descriptors[n]->sampleRate)
|
Chris@1039
|
864 * inputRate);
|
Chris@320
|
865 }
|
Chris@862
|
866
|
Chris@862
|
867 if (frame < 0) {
|
Chris@862
|
868 cerr
|
Chris@862
|
869 << "WARNING: FeatureExtractionModelTransformer::addFeature: "
|
Chris@862
|
870 << "Negative frame counts are not supported (frame = " << frame
|
Chris@862
|
871 << " from timestamp " << feature.timestamp
|
Chris@862
|
872 << "), dropping feature"
|
Chris@862
|
873 << endl;
|
Chris@862
|
874 return;
|
Chris@862
|
875 }
|
Chris@862
|
876
|
Chris@441
|
877 // Rather than repeat the complicated tests from the constructor
|
Chris@441
|
878 // to determine what sort of model we must be adding the features
|
Chris@441
|
879 // to, we instead test what sort of model the constructor decided
|
Chris@441
|
880 // to create.
|
Chris@320
|
881
|
Chris@849
|
882 if (isOutput<SparseOneDimensionalModel>(n)) {
|
Chris@441
|
883
|
Chris@441
|
884 SparseOneDimensionalModel *model =
|
Chris@849
|
885 getConformingOutput<SparseOneDimensionalModel>(n);
|
Chris@320
|
886 if (!model) return;
|
Chris@350
|
887
|
Chris@441
|
888 model->addPoint(SparseOneDimensionalModel::Point
|
Chris@441
|
889 (frame, feature.label.c_str()));
|
Chris@320
|
890
|
Chris@849
|
891 } else if (isOutput<SparseTimeValueModel>(n)) {
|
Chris@320
|
892
|
Chris@350
|
893 SparseTimeValueModel *model =
|
Chris@849
|
894 getConformingOutput<SparseTimeValueModel>(n);
|
Chris@320
|
895 if (!model) return;
|
Chris@350
|
896
|
Chris@930
|
897 for (int i = 0; i < (int)feature.values.size(); ++i) {
|
Chris@454
|
898
|
Chris@454
|
899 float value = feature.values[i];
|
Chris@454
|
900
|
Chris@454
|
901 QString label = feature.label.c_str();
|
Chris@454
|
902 if (feature.values.size() > 1) {
|
Chris@454
|
903 label = QString("[%1] %2").arg(i+1).arg(label);
|
Chris@454
|
904 }
|
Chris@454
|
905
|
Chris@876
|
906 SparseTimeValueModel *targetModel = model;
|
Chris@876
|
907
|
Chris@876
|
908 if (m_needAdditionalModels[n] && i > 0) {
|
Chris@876
|
909 targetModel = getAdditionalModel(n, i);
|
Chris@876
|
910 if (!targetModel) targetModel = model;
|
Chris@893
|
911 // std::cerr << "adding point to model " << targetModel
|
Chris@893
|
912 // << " for output " << n << " bin " << i << std::endl;
|
Chris@876
|
913 }
|
Chris@876
|
914
|
Chris@876
|
915 targetModel->addPoint
|
Chris@876
|
916 (SparseTimeValueModel::Point(frame, value, label));
|
Chris@454
|
917 }
|
Chris@320
|
918
|
Chris@849
|
919 } else if (isOutput<FlexiNoteModel>(n) || isOutput<NoteModel>(n) || isOutput<RegionModel>(n)) { //GF: Added Note Model
|
Chris@320
|
920
|
Chris@441
|
921 int index = 0;
|
Chris@441
|
922
|
Chris@441
|
923 float value = 0.0;
|
Chris@930
|
924 if ((int)feature.values.size() > index) {
|
Chris@441
|
925 value = feature.values[index++];
|
Chris@441
|
926 }
|
Chris@320
|
927
|
Chris@1039
|
928 sv_frame_t duration = 1;
|
Chris@441
|
929 if (feature.hasDuration) {
|
Chris@441
|
930 duration = Vamp::RealTime::realTime2Frame(feature.duration, inputRate);
|
Chris@441
|
931 } else {
|
Chris@1039
|
932 if (in_range_for(feature.values, index)) {
|
Chris@1039
|
933 duration = lrintf(feature.values[index++]);
|
Chris@441
|
934 }
|
Chris@441
|
935 }
|
gyorgyf@786
|
936
|
Chris@891
|
937 if (isOutput<FlexiNoteModel>(n)) { // GF: added for flexi note model
|
gyorgyf@786
|
938
|
gyorgyf@786
|
939 float velocity = 100;
|
Chris@930
|
940 if ((int)feature.values.size() > index) {
|
gyorgyf@786
|
941 velocity = feature.values[index++];
|
gyorgyf@786
|
942 }
|
gyorgyf@786
|
943 if (velocity < 0) velocity = 127;
|
gyorgyf@786
|
944 if (velocity > 127) velocity = 127;
|
gyorgyf@786
|
945
|
Chris@849
|
946 FlexiNoteModel *model = getConformingOutput<FlexiNoteModel>(n);
|
gyorgyf@786
|
947 if (!model) return;
|
Chris@1039
|
948 model->addPoint(FlexiNoteModel::Point(frame,
|
Chris@1039
|
949 value, // value is pitch
|
Chris@1039
|
950 duration,
|
Chris@1039
|
951 velocity / 127.f,
|
Chris@1039
|
952 feature.label.c_str()));
|
gyorgyf@786
|
953 // GF: end -- added for flexi note model
|
Chris@849
|
954 } else if (isOutput<NoteModel>(n)) {
|
Chris@320
|
955
|
Chris@441
|
956 float velocity = 100;
|
Chris@930
|
957 if ((int)feature.values.size() > index) {
|
Chris@441
|
958 velocity = feature.values[index++];
|
Chris@441
|
959 }
|
Chris@441
|
960 if (velocity < 0) velocity = 127;
|
Chris@441
|
961 if (velocity > 127) velocity = 127;
|
Chris@320
|
962
|
Chris@849
|
963 NoteModel *model = getConformingOutput<NoteModel>(n);
|
Chris@441
|
964 if (!model) return;
|
Chris@441
|
965 model->addPoint(NoteModel::Point(frame, value, // value is pitch
|
Chris@1039
|
966 duration,
|
Chris@441
|
967 velocity / 127.f,
|
Chris@441
|
968 feature.label.c_str()));
|
Chris@441
|
969 } else {
|
gyorgyf@786
|
970
|
Chris@849
|
971 RegionModel *model = getConformingOutput<RegionModel>(n);
|
Chris@454
|
972 if (!model) return;
|
Chris@454
|
973
|
Chris@474
|
974 if (feature.hasDuration && !feature.values.empty()) {
|
Chris@454
|
975
|
Chris@930
|
976 for (int i = 0; i < (int)feature.values.size(); ++i) {
|
Chris@454
|
977
|
Chris@454
|
978 float value = feature.values[i];
|
Chris@454
|
979
|
Chris@454
|
980 QString label = feature.label.c_str();
|
Chris@454
|
981 if (feature.values.size() > 1) {
|
Chris@454
|
982 label = QString("[%1] %2").arg(i+1).arg(label);
|
Chris@454
|
983 }
|
Chris@454
|
984
|
Chris@1039
|
985 model->addPoint(RegionModel::Point(frame,
|
Chris@1039
|
986 value,
|
Chris@1039
|
987 duration,
|
Chris@454
|
988 label));
|
Chris@454
|
989 }
|
Chris@454
|
990 } else {
|
Chris@454
|
991
|
Chris@1039
|
992 model->addPoint(RegionModel::Point(frame,
|
Chris@1039
|
993 value,
|
Chris@1039
|
994 duration,
|
Chris@441
|
995 feature.label.c_str()));
|
Chris@454
|
996 }
|
Chris@441
|
997 }
|
Chris@320
|
998
|
Chris@849
|
999 } else if (isOutput<EditableDenseThreeDimensionalModel>(n)) {
|
Chris@320
|
1000
|
Chris@533
|
1001 DenseThreeDimensionalModel::Column values =
|
Chris@533
|
1002 DenseThreeDimensionalModel::Column::fromStdVector(feature.values);
|
Chris@320
|
1003
|
Chris@320
|
1004 EditableDenseThreeDimensionalModel *model =
|
Chris@849
|
1005 getConformingOutput<EditableDenseThreeDimensionalModel>(n);
|
Chris@320
|
1006 if (!model) return;
|
Chris@320
|
1007
|
Chris@889
|
1008 // cerr << "(note: model resolution = " << model->getResolution() << ")"
|
Chris@889
|
1009 // << endl;
|
Chris@889
|
1010
|
Chris@891
|
1011 if (!feature.hasTimestamp && m_fixedRateFeatureNos[n] >= 0) {
|
Chris@891
|
1012 model->setColumn(m_fixedRateFeatureNos[n], values);
|
Chris@889
|
1013 } else {
|
Chris@1039
|
1014 model->setColumn(int(frame / model->getResolution()), values);
|
Chris@889
|
1015 }
|
Chris@441
|
1016
|
Chris@441
|
1017 } else {
|
Chris@690
|
1018 SVDEBUG << "FeatureExtractionModelTransformer::addFeature: Unknown output model type!" << endl;
|
Chris@320
|
1019 }
|
Chris@320
|
1020 }
|
Chris@320
|
1021
|
Chris@320
|
1022 void
|
Chris@850
|
1023 FeatureExtractionModelTransformer::setCompletion(int n, int completion)
|
Chris@320
|
1024 {
|
Chris@690
|
1025 // SVDEBUG << "FeatureExtractionModelTransformer::setCompletion("
|
Chris@687
|
1026 // << completion << ")" << endl;
|
Chris@320
|
1027
|
Chris@849
|
1028 if (isOutput<SparseOneDimensionalModel>(n)) {
|
Chris@320
|
1029
|
Chris@350
|
1030 SparseOneDimensionalModel *model =
|
Chris@849
|
1031 getConformingOutput<SparseOneDimensionalModel>(n);
|
Chris@320
|
1032 if (!model) return;
|
Chris@923
|
1033 if (model->isAbandoning()) abandon();
|
Chris@441
|
1034 model->setCompletion(completion, true);
|
Chris@320
|
1035
|
Chris@849
|
1036 } else if (isOutput<SparseTimeValueModel>(n)) {
|
Chris@320
|
1037
|
Chris@350
|
1038 SparseTimeValueModel *model =
|
Chris@849
|
1039 getConformingOutput<SparseTimeValueModel>(n);
|
Chris@320
|
1040 if (!model) return;
|
Chris@923
|
1041 if (model->isAbandoning()) abandon();
|
Chris@441
|
1042 model->setCompletion(completion, true);
|
Chris@320
|
1043
|
Chris@849
|
1044 } else if (isOutput<NoteModel>(n)) {
|
Chris@320
|
1045
|
Chris@849
|
1046 NoteModel *model = getConformingOutput<NoteModel>(n);
|
Chris@320
|
1047 if (!model) return;
|
Chris@923
|
1048 if (model->isAbandoning()) abandon();
|
Chris@441
|
1049 model->setCompletion(completion, true);
|
gyorgyf@786
|
1050
|
Chris@923
|
1051 } else if (isOutput<FlexiNoteModel>(n)) {
|
gyorgyf@786
|
1052
|
Chris@849
|
1053 FlexiNoteModel *model = getConformingOutput<FlexiNoteModel>(n);
|
gyorgyf@786
|
1054 if (!model) return;
|
Chris@923
|
1055 if (model->isAbandoning()) abandon();
|
gyorgyf@786
|
1056 model->setCompletion(completion, true);
|
Chris@320
|
1057
|
Chris@849
|
1058 } else if (isOutput<RegionModel>(n)) {
|
Chris@441
|
1059
|
Chris@849
|
1060 RegionModel *model = getConformingOutput<RegionModel>(n);
|
Chris@441
|
1061 if (!model) return;
|
Chris@923
|
1062 if (model->isAbandoning()) abandon();
|
Chris@441
|
1063 model->setCompletion(completion, true);
|
Chris@441
|
1064
|
Chris@849
|
1065 } else if (isOutput<EditableDenseThreeDimensionalModel>(n)) {
|
Chris@320
|
1066
|
Chris@320
|
1067 EditableDenseThreeDimensionalModel *model =
|
Chris@849
|
1068 getConformingOutput<EditableDenseThreeDimensionalModel>(n);
|
Chris@320
|
1069 if (!model) return;
|
Chris@923
|
1070 if (model->isAbandoning()) abandon();
|
Chris@350
|
1071 model->setCompletion(completion, true); //!!!m_context.updates);
|
Chris@320
|
1072 }
|
Chris@320
|
1073 }
|
Chris@320
|
1074
|