File: skew.cpp

package info (click to toggle)
musescore-snapshot 3.2.s20190704%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 218,116 kB
  • sloc: cpp: 290,563; xml: 200,238; sh: 3,706; ansic: 1,447; python: 393; makefile: 222; perl: 82; pascal: 79
file content (185 lines) | stat: -rw-r--r-- 6,325 bytes parent folder | download | duplicates (4)
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
//=============================================================================
//  MusE Reader
//  Music Score Reader
//
//  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.
//=============================================================================

#include "image.h"
#include "utils.h"
#include "omr.h"
#include "omrpage.h"

namespace Ms {

//=============================================================================
//  inspired by ImageMagick (http://www.imagemagick.org)
//=============================================================================

//  imageSkew() calculates skew of image.  Skew is an artifact that
//  occurs in scanned images because of the camera being misaligned,
//  imperfections in the scanning or surface, or simply because the paper was
//  not placed completely flat when scanned.
//
//  The format of the imageSkew method is:
//
//      double imageSkew(const QImage *image)
//

// Benchmark 7.3sec test2 first page
//           6
//           5.7
//           5.3
//           3.74
//           3.30
//           0.47sec RELEASE

#define MyPI  3.14159265358979323846264338327950288419716939937510

//---------------------------------------------------------
//   RadiansToDegrees
//---------------------------------------------------------

static inline double RadiansToDegrees(double r) {
      return 180.0 * r / MyPI;
      }

//---------------------------------------------------------
//   RadonInfo
//---------------------------------------------------------

class RadonInfo {
      int size;

   public:
      ushort* cells;
      int width, height;

      RadonInfo(ulong w, ulong h) {
            width  = w;
            height = h;
            size   = w * h;
            cells  = new ushort[size];
            }
      ~RadonInfo() { delete[] cells; }
      void reset() { memset(cells, 0, size * sizeof(*cells)); }
      ushort getCell(int x, int y) const         { return cells[height * x + y];  }
      void   setCell(int x, int y, ushort value) { cells[height * x + y] = value; }
      };

//---------------------------------------------------------
//   radonProjection
//---------------------------------------------------------

static void radonProjection(RadonInfo* src, RadonInfo* dst, int sign, ulong* projection)
      {
      RadonInfo* p = src;
      RadonInfo* q = dst;
      for (int step = 1; step < p->width; step *= 2) {
            for (int x = 0; x < p->width; x += 2 * step) {
                  for (int i = 0; i < step; i++) {
                        int y;
                        for (y = 0; y < (p->height-i-1); y++) {
                              ushort cell = p->getCell(x+i, y);
                              q->setCell(x+2*i,   y, cell + p->getCell(x+i+step, y+i));
                              q->setCell(x+2*i+1, y, cell + p->getCell(x+i+step, y+i+1));
                              }
                        for ( ; y < (p->height-i); y++) {
                              ushort cell = p->getCell(x+i, y);
                              q->setCell(x+2*i, y, cell + p->getCell(x+i+step, y+i));
                              q->setCell(x+2*i+1, y, cell);
                              }
                        for ( ; y < p->height; y++) {
                              ushort cell = p->getCell(x+i, y);
                              q->setCell(x+2*i, y, cell);
                              q->setCell(x+2*i+1, y, cell);
                              }
                        }
                  }
            RadonInfo* swap = p;
            p = q;
            q = swap;
            }
      for (int x = 0; x < p->width; x++) {
            uint sum = 0;
            for (int y = 0; y < (p->height-1); y++) {
                  int delta = p->getCell(x, y) - p->getCell(x, y + 1);
                  sum += delta * delta;
                  }
            projection[p->width + sign * x - 1] = sum;
            }
      }

//---------------------------------------------------------
//   radonTransform
//---------------------------------------------------------

void OmrPage::radonTransform(ulong* projection, int w, int n, const QRect& r)
      {
      int h = r.height();
      RadonInfo* src = new RadonInfo(w, h);
      RadonInfo* dst = new RadonInfo(w, h);

      src->reset();
      for (int y = 0; y < h; y++) {
            int i = n;
            const uchar* p = (const uchar*)scanLine(r.y() + y);
            for (int x = 0; x < n; ++x)
                  src->setCell(--i, y, Omr::bitsSetTable[*p++]);
            }
      radonProjection(src, dst, -1, projection);

      src->reset();
      for (int y = 0; y < h; y++) {
            const uchar* p = (const uchar*)scanLine(r.y() + y);
            for (int x = 0; x < n; ++x)
                  src->setCell(x, y, Omr::bitsSetTable[*p++]);
            }
      radonProjection(src, dst, 1, projection);

      delete dst;
      delete src;
      }

//---------------------------------------------------------
//   skew
//    compute image skew angle
//---------------------------------------------------------

double OmrPage::skew(const QRect& r)
      {
//      Benchmark bench("imageSkew");

      int nn    = wordsPerLine() * 4;
      int width = 1;
      for (; width < nn; width <<= 1)
            ;
      int n = 2 * width - 1;

      ulong* projection = new ulong[n];
      radonTransform(projection, width, nn, r);
      uint max_projection = 0;
      int skew            = 0;
      for (int i = 0; i < n; i++) {
            if (projection[i] > max_projection) {
                  skew = i - width + 1;
                  max_projection = projection[i];
                  }
            }
      delete[] projection;
      return RadiansToDegrees(-atan((double) skew/width/8));
      }
}