forked from musescore/MuseScore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathomr.h
130 lines (111 loc) · 3.97 KB
/
omr.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
//=============================================================================
// MusE Reader
// Music Score Reader
// $Id$
//
// Copyright (C) 2010 Werner Schweer
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
//=============================================================================
#ifndef __OMR_H__
#define __OMR_H__
#include "config.h"
namespace Ms {
class OmrView;
class Xml;
class Pdf;
class OmrPage;
class Ocr;
class Score;
class ScoreView;
class XmlReader;
class Pattern;
#ifdef OMR
//---------------------------------------------------------
// Omr
//---------------------------------------------------------
class Omr {
QString _path;
double _spatium;
double _dpmm;
Pdf* _doc;
QList<OmrPage*> _pages;
Ocr* _ocr;
Score* _score;
static void initUtils();
void process1(int page);
public:
Omr(Score*);
Omr(const QString& path, Score*);
static char bitsSetTable[256];
bool readPdf();
int pagesInDocument() const;
int numPages() const { return _pages.size(); }
OmrPage* page(int idx) { return _pages[idx]; }
OmrView* newOmrView(ScoreView*);
const QList<OmrPage*>& pages() const { return _pages; }
#ifdef OCR
Ocr* ocr() const { return _ocr; }
#endif
void write(Xml&) const;
void read(XmlReader&);
double spatiumMM() const; // spatium in millimeter
double spatium() const { return _spatium; }
void setSpatium(double val) { _spatium = val; }
double dpmm() const { return _dpmm; }
void setDpmm(double val) { _dpmm = val; }
double staffDistance() const;
double systemDistance() const;
Score* score() const { return _score; }
const QString& path() const { return _path; }
void process();
static Pattern* quartheadPattern;
static Pattern* halfheadPattern;
static Pattern* sharpPattern;
static Pattern* flatPattern;
static Pattern* naturalPattern;
static Pattern* trebleclefPattern;
static Pattern* bassclefPattern;
};
#else
//---------------------------------------------------------
// Omr
//---------------------------------------------------------
class Omr {
QString _path;
QList<OmrPage*> _pages;
public:
Omr(Score*) {}
Omr(const QString&, Score*) {}
bool readPdf() { return false; }
int pagesInDocument() const { return 0; }
int numPages() const { return 0; }
OmrPage* page(int) { return 0; }
const QList<OmrPage*>& pages() const { return _pages; }
OmrView* newOmrView(ScoreView*) { return 0; }
#ifdef OCR
Ocr* ocr() const { return 0; }
#endif
void write(Xml&) const {}
void read(XmlReader&) {}
double spatiumMM() const { return 0; }
double spatium() const { return 0; }
double dpmm() const { return 0; }
double staffDistance() const { return 0; }
double systemDistance() const { return 0; }
Score* score() const { return 0; }
const QString& path() const { return _path; }
};
#endif
}
#endif