Verovio
Source code documentation
featureextractor.h
1 // Name: featureextractor.h
3 // Author: Laurent Pugin
4 // Created: 2021
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_FEATURE_EXTRACTOR_H__
9 #define __VRV_FEATURE_EXTRACTOR_H__
10 
11 //----------------------------------------------------------------------------
12 
13 #include "options.h"
14 
15 //----------------------------------------------------------------------------
16 
17 #include "jsonxx.h"
18 
19 namespace vrv {
20 
22 
23 public:
28  FeatureExtractor(const std::string &options);
30  virtual ~FeatureExtractor();
32 
33  /*
34  * Clear the content of the feature extractor.
35  */
36  virtual void Reset();
37 
41  void Extract(const Object *object);
42 
46  void ToJson(std::string &output);
47 
48 private:
49  //
50 public:
55  std::list<const Note *> m_previousNotes;
56 
57  jsonxx::Array m_pitchesChromatic;
58  jsonxx::Array m_pitchesChromaticWithDuration;
59  jsonxx::Array m_pitchesDiatonic;
60  jsonxx::Array m_pitchesIds;
61 
62  jsonxx::Array m_intervalsChromatic;
63  jsonxx::Array m_intervalsDiatonic;
64  jsonxx::Array m_intervalGrossContour;
65  jsonxx::Array m_intervalRefinedContour;
66  jsonxx::Array m_intervalsIds;
67 
68 private:
69 };
70 
71 } // namespace vrv
72 
73 #endif
vrv::Object
This class represents a basic object.
Definition: object.h:59
vrv::FeatureExtractor
Definition: featureextractor.h:21
vrv::FeatureExtractor::m_previousNotes
std::list< const Note * > m_previousNotes
A list of previous notes for interval calculation.
Definition: featureextractor.h:55
vrv::FeatureExtractor::Extract
void Extract(const Object *object)
Extract a feature for the object.
vrv::FeatureExtractor::ToJson
void ToJson(std::string &output)
Write the current content of the extractor to a JSON string.