forked from Tulon/scantailor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CommandLine.cpp
518 lines (438 loc) · 14.8 KB
/
CommandLine.cpp
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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
/*
Scan Tailor - Interactive post-processing tool for scanned pages.
CommandLine - Interface for ScanTailor's parameters provided on CL.
Copyright (C) 2011 Petr Kovar <[email protected]>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
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, see <http://www.gnu.org/licenses/>.
*/
#include <cstdlib>
#include <assert.h>
#include <iostream>
#include <QDir>
#include <QMap>
#include <QRegExp>
#include <QStringList>
#include "Dpi.h"
#include "ImageId.h"
#include "version.h"
#include "CommandLine.h"
#include "ImageFileInfo.h"
#include "ImageMetadata.h"
#include "filters/page_split/LayoutType.h"
#include "filters/page_layout/Settings.h"
#include "Margins.h"
#include "Despeckle.h"
CommandLine CommandLine::m_globalInstance;
void
CommandLine::set(CommandLine const& cl)
{
assert(!m_globalInstance.isGlobal());
m_globalInstance = cl;
m_globalInstance.setGlobal();
}
void
CommandLine::parseCli(QStringList const& argv)
{
QRegExp rx("^--([^=]+)=(.*)$");
QRegExp rx_switch("^--([^=]+)$");
QRegExp rx_short("^-([^=]+)=(.*)$");
QRegExp rx_short_switch("^-([^=]+)$");
QRegExp rx_project(".*\\.ScanTailor$", Qt::CaseInsensitive);
QMap<QString, QString> shortMap;
shortMap["h"] = "help";
shortMap["help"] = "help";
shortMap["v"] = "verbose";
shortMap["l"] = "layout";
shortMap["ld"] = "layout-direction";
shortMap["o"] = "output-project";
// skip first argument (scantailor)
for (int i=1; i<argv.size(); i++) {
#ifdef DEBUG_CLI
std::cout << "arg[" << i << "]=" << argv[i].toAscii().constData() << "\n";
#endif
if (rx.exactMatch(argv[i])) {
// option with a value
m_options[rx.cap(1)] = rx.cap(2);
} else if (rx_switch.exactMatch(argv[i])) {
// option without value
m_options[rx_switch.cap(1)] = "true";
} else if (rx_short.exactMatch(argv[i])) {
// option with a value
QString key = shortMap[rx_short.cap(1)];
m_options[key] = rx_short.cap(2);
} else if (rx_short_switch.exactMatch(argv[i])) {
QString key = shortMap[rx_short_switch.cap(1)];
if (key == "") continue;
m_options[key] = "true";
} else if (rx_project.exactMatch(argv[i])) {
// project file
CommandLine::m_projectFile = argv[i];
} else {
// handle input images and output directory
QFileInfo file(argv[i]);
if (i==(argv.size()-1)) {
// output directory
if (file.isDir()) {
CommandLine::m_outputDirectory = file.filePath();
} else {
std::cout << "Error: Last argument must be an existing directory" << "\n";
exit(1);
}
} else if (file.filePath() == "-") {
// file names from stdin
std::string fname;
while (! std::cin.eof()) {
std::cin >> fname;
addImage(fname.c_str());
}
} else if (file.isDir()) {
// add all files from given directory as images
QDir dir(argv[i]);
QStringList files = dir.entryList(QDir::Files, QDir::Name);
for (int f=0; f<files.count(); f++) {
addImage(dir.filePath(files[f]));
}
} else {
// argument is image
addImage(file.filePath());
}
}
}
setup();
#ifdef DEBUG_CLI
QStringList params = m_options.keys();
for (int i=0; i<params.size(); i++) { std::cout << params[i].toAscii().constData() << "=" << m_options.value(params[i]).toAscii().constData() << "\n"; }
std::cout << "Images: " << CommandLine::m_images.size() << "\n";
#endif
}
void
CommandLine::addImage(QString const& path)
{
QFileInfo file(path);
// create ImageFileInfo and push to images
ImageId const image_id(file.filePath());
ImageMetadata metadata;
metadata.setDpi(fetchDpi());
std::vector<ImageMetadata> vMetadata;
vMetadata.push_back(metadata);
ImageFileInfo image_info(file, vMetadata);
m_images.push_back(image_info);
m_files.push_back(file);
}
void
CommandLine::setup()
{
m_outputProjectFile = fetchOutputProjectFile();
m_layoutType = fetchLayoutType();
m_layoutDirection = fetchLayoutDirection();
m_colorMode = fetchColorMode();
m_dpi = fetchDpi();
m_outputDpi = fetchDpi("output-dpi");
m_margins = fetchMargins();
m_alignment = fetchAlignment();
m_contentDetection = fetchContentDetection();
m_contentRect = fetchContentRect();
m_orientation = fetchOrientation();
m_threshold = fetchThreshold();
m_deskewAngle = fetchDeskewAngle();
m_startFilterIdx = fetchStartFilterIdx();
m_endFilterIdx = fetchEndFilterIdx();
}
void
CommandLine::printHelp()
{
std::cout << "\n";
std::cout << "Scan Tailor is a post-processing tool for scanned pages." << "\n";
std::cout << "Version: " << VERSION << "\n";
std::cout << "\n";
std::cout << "ScanTailor usage: " << "\n";
std::cout << "\t1) scantailor" << "\n";
std::cout << "\t2) scantailor <project_file>" << "\n";
std::cout << "\t3) scantailor-cli [options] <images|directory|-> <output_directory>" << "\n";
std::cout << "\t4) scantailor-cli [options] <project_file> [output_directory]" << "\n";
std::cout << "\n";
std::cout << "1)" << "\n";
std::cout << "\tstart ScanTailor's GUI interface" << "\n";
std::cout << "2)" << "\n";
std::cout << "\tstart ScanTailor's GUI interface and load project file" << "\n";
std::cout << "3)" << "\n";
std::cout << "\tbatch processing images from command line; no GUI" << "\n";
std::cout << "\tfile names are collected from arguments, input directory or stdin (-)" << "\n";
std::cout << "4)" << "\n";
std::cout << "\tbatch processing project from command line; no GUI" << "\n";
std::cout << "\tif output_directory is specified as last argument, it overwrites the one in project file" << "\n";
std::cout << "\n";
std::cout << "Options:" << "\n";
std::cout << "\t--help, -h" << "\n";
std::cout << "\t--verbose, -v" << "\n";
std::cout << "\t--layout=, -l=<0|1|1.5|2>\t\t-- default: 0" << "\n";
std::cout << "\t\t\t 0: auto detect" << "\n";
std::cout << "\t\t\t 1: one page layout" << "\n";
std::cout << "\t\t\t1.5: one page layout but cutting is needed" << "\n";
std::cout << "\t\t\t 2: two page layout" << "\n";
std::cout << "\t--layout-direction=, -ld=<lr|rl>\t-- default: lr" << "\n";
std::cout << "\t--orientation=<left|right|upsidedown|none>\n\t\t\t\t\t\t-- default: none" << "\n";
std::cout << "\t--rotate=<0.0...360.0>\t\t\t-- it also sets deskew to manual mode" << "\n";
std::cout << "\t--deskew=<auto|manual>\t\t\t-- default: auto" << "\n";
std::cout << "\t--content-detection=<cautious|normal|aggressive>\n\t\t\t\t\t\t-- default: normal" << "\n";
std::cout << "\t--content-box=<<left_offset>x<top_offset>:<width>x<height>>" << "\n";
std::cout << "\t\t\t\t\t\t-- if set the content detection is se to manual mode" << "\n";
std::cout << "\t\t\t\t\t\t example: --content-box=100x100:1500x2500" << "\n";
std::cout << "\t--margins=<number>\t\t\t-- sets left, top, right and bottom margins to same number." << "\n";
std::cout << "\t\t--margins-left=<number>" << "\n";
std::cout << "\t\t--margins-right=<number>" << "\n";
std::cout << "\t\t--margins-top=<number>" << "\n";
std::cout << "\t\t--margins-bottom=<number>" << "\n";
std::cout << "\t--alignment=center\t\t\t-- sets vertical and horizontal alignment to center" << "\n";
std::cout << "\t\t--alignment-vertical=<top|center|bottom>" << "\n";
std::cout << "\t\t--alignment-horizontal=<left|center|right>" << "\n";
std::cout << "\t--dpi=<number>\t\t\t\t-- sets x and y dpi. default: 600" << "\n";
std::cout << "\t\t--dpi-x=<number>" << "\n";
std::cout << "\t\t--dpi-y=<number>" << "\n";
std::cout << "\t--output-dpi=<number>\t\t\t-- sets x and y output dpi. default: 600" << "\n";
std::cout << "\t\t--output-dpi-x=<number>" << "\n";
std::cout << "\t\t--output-dpi-y=<number>" << "\n";
std::cout << "\t--color-mode=<black_and_white|color_grayscale|mixed>\n\t\t\t\t\t\t-- default: black_and_white" << "\n";
std::cout << "\t--white-margins\t\t\t\t-- default: false" << "\n";
std::cout << "\t--normalize-illumination\t\t-- default: false" << "\n";
std::cout << "\t--threshold=<n>\t\t\t\t-- n<0 thinner, n>0 thicker; default: 0" << "\n";
std::cout << "\t--despeckle=<off|cautious|normal|aggressive>\n\t\t\t\t\t\t-- default: normal" << "\n";
std::cout << "\t--dewarping=<off|auto>\t\t\t-- default: off" << "\n";
std::cout << "\t--depth-perception=<1.0...3.0>\t\t-- default: 2.0" << "\n";
std::cout << "\t--start-filter=<1...6>\t\t\t-- default: 4" << "\n";
std::cout << "\t--end-filter=<1...6>\t\t\t-- default: 6" << "\n";
std::cout << "\t--output-project=, -o=<project_name>" << "\n";
std::cout << "\n";
}
page_split::LayoutType
CommandLine::fetchLayoutType()
{
page_split::LayoutType lt = page_split::AUTO_LAYOUT_TYPE;
if (!hasLayout())
return lt;
if (m_options.value("layout") == "1")
lt = page_split::SINGLE_PAGE_UNCUT;
else if (m_options.value("layout") == "1.5")
lt = page_split::PAGE_PLUS_OFFCUT;
else if (m_options.value("layout") == "2")
lt = page_split::TWO_PAGES;
return lt;
}
Qt::LayoutDirection
CommandLine::fetchLayoutDirection()
{
Qt::LayoutDirection l = Qt::LeftToRight;
if (!hasLayoutDirection())
return l;
QString ld = m_options.value("layout-direction").toLower();
if (ld == "rl")
l = Qt::RightToLeft;
return l;
}
Dpi
CommandLine::fetchDpi(QString oname)
{
int xdpi=600;
int ydpi=600;
if (m_options.contains(oname+"-x")) {
xdpi = m_options.value(oname+"-x").toInt();
}
if (m_options.contains(oname+"-y")) {
ydpi = m_options.value(oname+"-y").toInt();
}
if (m_options.contains(oname)) {
xdpi = m_options.value(oname).toInt();
ydpi = m_options.value(oname).toInt();
}
return Dpi(xdpi, ydpi);
}
output::ColorParams::ColorMode
CommandLine::fetchColorMode()
{
QString cm = m_options.value("color-mode").toLower();
if (cm == "color_grayscale")
return output::ColorParams::COLOR_GRAYSCALE;
else if (cm == "mixed")
return output::ColorParams::MIXED;
return output::ColorParams::BLACK_AND_WHITE;
}
Margins
CommandLine::fetchMargins()
{
Margins margins(page_layout::Settings::defaultHardMarginsMM());
if (m_options.contains("margins")) {
double m = m_options.value("margins").toDouble();
margins.setTop(m);
margins.setBottom(m);
margins.setLeft(m);
margins.setRight(m);
}
if (m_options.contains("margins-left"))
margins.setLeft(m_options.value("margins-left").toFloat());
if (m_options.contains("margins-right"))
margins.setRight(m_options.value("margins-right").toFloat());
if (m_options.contains("margins-top"))
margins.setTop(m_options.value("margins-top").toFloat());
if (m_options.contains("margins-bottom"))
margins.setBottom(m_options.value("margins-bottom").toFloat());
return margins;
}
page_layout::Alignment
CommandLine::fetchAlignment()
{
page_layout::Alignment alignment(page_layout::Alignment::TOP, page_layout::Alignment::HCENTER);
if (m_options.contains("alignment")) {
alignment.setVertical(page_layout::Alignment::VCENTER);
alignment.setHorizontal(page_layout::Alignment::HCENTER);
}
if (m_options.contains("alignment-vertical")) {
QString a = m_options.value("alignment-vertical").toLower();
if (a == "top") alignment.setVertical(page_layout::Alignment::TOP);
if (a == "center") alignment.setVertical(page_layout::Alignment::VCENTER);
if (a == "bottom") alignment.setVertical(page_layout::Alignment::BOTTOM);
}
if (m_options.contains("alignment-horizontal")) {
QString a = m_options.value("alignment-horizontal").toLower();
if (a == "left") alignment.setHorizontal(page_layout::Alignment::LEFT);
if (a == "center") alignment.setHorizontal(page_layout::Alignment::HCENTER);
if (a == "right") alignment.setHorizontal(page_layout::Alignment::RIGHT);
}
return alignment;
}
Despeckle::Level
CommandLine::fetchContentDetection()
{
Despeckle::Level level = Despeckle::NORMAL;
if (m_options.value("content-detection") != "") {
QString cm = m_options.value("content-detection").toLower();
if (cm == "cautious")
level = Despeckle::CAUTIOUS;
else if (cm == "aggressive")
level = Despeckle::AGGRESSIVE;
}
return level;
}
QRectF
CommandLine::fetchContentRect()
{
if (!hasContentRect())
return QRectF();
QRegExp rx("([\\d\\.]+)x([\\d\\.]+):([\\d\\.]+)x([\\d\\.]+)");
if (rx.exactMatch(m_options.value("content-box"))) {
return QRectF(rx.cap(1).toFloat(), rx.cap(2).toFloat(), rx.cap(3).toFloat(), rx.cap(4).toFloat());
}
std::cout << "invalid --content-box=" << m_options.value("content-box").toAscii().constData() << "\n";
exit(1);
}
CommandLine::Orientation
CommandLine::fetchOrientation()
{
if (!hasOrientation())
return TOP;
Orientation orient;
QString cli_orient = m_options.value("orientation");
if (cli_orient == "left") {
orient = LEFT;
} else if (cli_orient == "right") {
orient = RIGHT;
} else if (cli_orient == "upsidedown") {
orient = UPSIDEDOWN;
} else {
std::cout << "Wrong orientation " << m_options.value("orientation").toAscii().constData() << "\n";
exit(1);
}
return orient;
}
QString
CommandLine::fetchOutputProjectFile()
{
if (!hasOutputProject())
return QString();
return m_options.value("output-project");
}
int
CommandLine::fetchThreshold()
{
if (!hasThreshold())
return 0;
return m_options.value("threshold").toInt();
}
double
CommandLine::fetchDeskewAngle()
{
if (!hasDeskewAngle())
return 0.0;
return m_options.value("rotate").toDouble();
}
int
CommandLine::fetchStartFilterIdx()
{
if (!hasStartFilterIdx())
return 0;
return m_options.value("start-filter").toInt() - 1;
}
int
CommandLine::fetchEndFilterIdx()
{
if (!hasEndFilterIdx())
return 5;
return m_options.value("end-filter").toInt() - 1;
}
output::DewarpingMode
CommandLine::fetchDewarpingMode()
{
if (!hasDewarping())
return output::DewarpingMode::OFF;
return output::DewarpingMode(m_options.value("dewarping").toLower());
}
output::DespeckleLevel
CommandLine::fetchDespeckleLevel()
{
if (!hasDespeckle())
return output::DESPECKLE_NORMAL;
return output::despeckleLevelFromString(m_options.value("despeckle"));
}
output::DepthPerception
CommandLine::fetchDepthPerception()
{
if (!hasDepthPerception())
return output::DepthPerception();
return output::DepthPerception(m_options.value("depth-perception"));
}
bool
CommandLine::hasMargins() const
{
return(
m_options.contains("margins") ||
m_options.contains("margins-left") ||
m_options.contains("margins-right") ||
m_options.contains("margins-top") ||
m_options.contains("margins-bottom")
);
}
bool
CommandLine::hasAlignment() const
{
return(
m_options.contains("alignment") ||
m_options.contains("alignment-vertical") ||
m_options.contains("alignment-horizontal")
);
}
bool
CommandLine::hasOutputDpi() const
{
return(
m_options.contains("output-dpi") ||
m_options.contains("output-dpi-x") ||
m_options.contains("output-dpi-y")
);
}