-
Notifications
You must be signed in to change notification settings - Fork 18
/
pimg.js
202 lines (161 loc) · 6.02 KB
/
pimg.js
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
/*
pimg.js - sobnik.chrome module
Copyright (c) 2014 Artur Brugeman <[email protected]>
Copyright other contributors as noted in the AUTHORS file.
This file is part of sobnik.chrome, Sobnik plugin for Chrome:
http://sobnik.com.
This is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 3 of the License, or (at
your option) any later version.
This software 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this program. If not, see
<http://www.gnu.org/licenses/>.
*/
;(function () {
console.log ("Loading pimg");
var sobnik = window.sobnik;
console.assert (sobnik, "Sobnik required");
// public
function dataToImage (data)
{
// no matter what image format we choose, browser gets it right
// but don't remove /jpeg - it won't work!
var dataUrl = "data:image/jpeg;base64,"+data;
var img = document.createElement ('img');
$(img).attr ("src", dataUrl);
return img;
}
// public
function textHeight (board, img)
{
var canvas = document.createElement ('canvas');
canvas.width = img.width;
canvas.height = img.height;
console.log ("w "+img.width+" h "+img.height);
var context = canvas.getContext ('2d');
context.drawImage (img, 0, 0);
// rgba
var imageData = context.getImageData (0, 0, img.width, img.height);
var pixels = imageData.data;
// 1 channel
var blacks = new Uint8ClampedArray (pixels.length / 4);
function offset (x, y)
{
return (y * img.width + x) * 4;
}
function setBlack (x, y)
{
blacks[y * img.width + x] = 1;
}
// text detection filters
var sharpDistance = 2 // px
var sharpThreshold = 50 // 8-bit depth
var minTextWeight = 40 // px
for (var y = 0; y < img.height; y++)
{
for (var x = sharpDistance; x < img.width; x++)
{
var oc = offset (x, y);
var od = offset (x-sharpDistance, y);
var sharp = false;
// for each rgb channel
for (var i = 0; !sharp && i < 3; i++)
{
var c = pixels[oc + i];
var d = pixels[od + i];
var diff = Math.abs (c - d);
// if (y == 465)
// console.log ("y "+y+" x "+x+" c "+c+" d "+d+" diff "+diff);
sharp = diff > sharpThreshold;
}
if (!sharp)
setBlack (x, y);
}
}
// cut watermark
if (board.watermark)
{
var tl = board.watermark.top_left;
var br = board.watermark.bottom_right;
var x1 = ("left" in tl) ? tl.left : img.width - tl.right;
var y1 = ("top" in tl) ? tl.top : img.height - tl.bottom;
var x2 = ("left" in br) ? br.left : img.width - br.right;
var y2 = ("top" in br) ? br.top : img.height - br.bottom;
for (var y = y1; y <= y2; y++)
for (var x = x1; x <= x2; x++)
setBlack(x, y);
}
var weights = [];
for (var y = 0; y < img.height; y++)
{
var weight = 0;
for (var x = 0; x < img.width; x++)
{
function black (x, y)
{
return blacks[y * img.width + x] != 0;
}
if (black (x, y))
continue;
var noiseX = true;
if (x > 0 && !black (x-1, y))
noiseX = false;
if (x < (img.width - 1) && !black (x+1, y))
noiseX = false
var noiseY = true
if (y > 0 && !black (x, y-1))
noiseY = false
if (y < (img.height - 1) && !black (x, y+1))
noiseY = false
if (noiseX || noiseY)
setBlack (x, y);
else
weight++
}
weights.push (weight);
}
function median ()
{
if (weights.length == 0)
return 0
weights.sort (function (a, b) { return a < b; });
return weights[Math.floor (weights.length / 2)];
}
var noise = median ();
console.log ("Noise "+noise);
var height = 0;
weights.forEach (function (w) {
var text = w > (noise + minTextWeight);
if (text)
height++;
});
console.log ("Photo text height: "+height);
if (sobnik.debugPimg)
{
for (var i = 0; i < blacks.length; i++)
{
if (!blacks[i])
continue;
pixels[i*4] = 0;
pixels[i*4+1] = 0;
pixels[i*4+2] = 0;
}
context.putImageData (imageData, 0, 0);
$(img).attr("src", canvas.toDataURL ("image/png"));
$("body").append (img);
var div = document.createElement ("div");
$(div).html (height);
$("body").append (div);
}
return height;
}
window.sobnik.pimg = {
dataToImage: dataToImage,
textHeight: textHeight,
}
}) ();