forked from scantailor/scantailor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ConsoleBatch.cpp
409 lines (346 loc) · 12.6 KB
/
ConsoleBatch.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
/*
Scan Tailor - Interactive post-processing tool for scanned pages.
ConsoleBatch - Batch processing scanned pages from command line.
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 <vector>
#include <iostream>
#include <assert.h>
#include "Utils.h"
#include "ProjectPages.h"
#include "PageSelectionAccessor.h"
#include "StageSequence.h"
#include "ProcessingTaskQueue.h"
#include "FileNameDisambiguator.h"
#include "OutputFileNameGenerator.h"
#include "ImageInfo.h"
#include "ImageFileInfo.h"
#include "PageInfo.h"
#include "PageSequence.h"
#include "ImageId.h"
#include "ThumbnailPixmapCache.h"
#include "LoadFileTask.h"
#include "ProjectWriter.h"
#include "ProjectReader.h"
#include "OrthogonalRotation.h"
#include "SelectedPage.h"
#include "filters/fix_orientation/Settings.h"
#include "filters/fix_orientation/Filter.h"
#include "filters/fix_orientation/Task.h"
#include "filters/fix_orientation/CacheDrivenTask.h"
#include "filters/page_split/Settings.h"
#include "filters/page_split/Filter.h"
#include "filters/page_split/Task.h"
#include "filters/page_split/CacheDrivenTask.h"
#include "filters/deskew/Settings.h"
#include "filters/deskew/Filter.h"
#include "filters/deskew/Task.h"
#include "filters/deskew/CacheDrivenTask.h"
#include "filters/select_content/Settings.h"
#include "filters/select_content/Filter.h"
#include "filters/select_content/Task.h"
#include "filters/select_content/CacheDrivenTask.h"
#include "filters/page_layout/Settings.h"
#include "filters/page_layout/Filter.h"
#include "filters/page_layout/Task.h"
#include "filters/page_layout/CacheDrivenTask.h"
#include "filters/output/Settings.h"
#include "filters/output/Params.h"
#include "filters/output/Filter.h"
#include "filters/output/Task.h"
#include "filters/output/CacheDrivenTask.h"
#include <QMap>
#include <QDomDocument>
#include "ConsoleBatch.h"
#include "CommandLine.h"
ConsoleBatch::ConsoleBatch(std::vector<ImageFileInfo> const& images, QString const& output_directory, Qt::LayoutDirection const layout)
: batch(true), debug(true),
m_ptrDisambiguator(new FileNameDisambiguator),
m_ptrPages(new ProjectPages(images, ProjectPages::AUTO_PAGES, layout))
{
PageSelectionAccessor const accessor((IntrusivePtr<PageSelectionProvider>())); // Won't really be used anyway.
m_ptrStages = IntrusivePtr<StageSequence>(new StageSequence(m_ptrPages, accessor));
//m_ptrThumbnailCache = IntrusivePtr<ThumbnailPixmapCache>(new ThumbnailPixmapCache(output_dir+"/cache/thumbs", QSize(200,200), 40, 5));
m_ptrThumbnailCache = Utils::createThumbnailCache(output_directory);
m_outFileNameGen = OutputFileNameGenerator(m_ptrDisambiguator, output_directory, m_ptrPages->layoutDirection());
}
ConsoleBatch::ConsoleBatch(QString const project_file)
: batch(true), debug(true)
{
QFile file(project_file);
if (!file.open(QIODevice::ReadOnly)) {
throw std::runtime_error("Unable to open the project file.");
}
QDomDocument doc;
if (!doc.setContent(&file)) {
throw std::runtime_error("The project file is broken.");
}
file.close();
m_ptrReader.reset(new ProjectReader(doc));
m_ptrPages = m_ptrReader->pages();
PageSelectionAccessor const accessor((IntrusivePtr<PageSelectionProvider>())); // Won't be used anyway.
m_ptrDisambiguator = m_ptrReader->namingDisambiguator();
m_ptrStages = IntrusivePtr<StageSequence>(new StageSequence(m_ptrPages, accessor));
m_ptrReader->readFilterSettings(m_ptrStages->filters());
CommandLine const& cli = CommandLine::get();
QString output_directory = m_ptrReader->outputDirectory();
if (!cli.outputDirectory().isEmpty()) {
output_directory = cli.outputDirectory();
}
//m_ptrThumbnailCache = IntrusivePtr<ThumbnailPixmapCache>(new ThumbnailPixmapCache(output_directory+"/cache/thumbs", QSize(200,200), 40, 5));
m_ptrThumbnailCache = Utils::createThumbnailCache(output_directory);
m_outFileNameGen = OutputFileNameGenerator(m_ptrDisambiguator, output_directory, m_ptrPages->layoutDirection());
}
BackgroundTaskPtr
ConsoleBatch::createCompositeTask(
PageInfo const& page,
int const last_filter_idx)
{
IntrusivePtr<fix_orientation::Task> fix_orientation_task;
IntrusivePtr<page_split::Task> page_split_task;
IntrusivePtr<deskew::Task> deskew_task;
IntrusivePtr<select_content::Task> select_content_task;
IntrusivePtr<page_layout::Task> page_layout_task;
IntrusivePtr<output::Task> output_task;
if (batch) {
debug = false;
}
if (last_filter_idx >= m_ptrStages->outputFilterIdx()) {
output_task = m_ptrStages->outputFilter()->createTask(
page.id(), m_ptrThumbnailCache, m_outFileNameGen, batch, debug
);
debug = false;
}
if (last_filter_idx >= m_ptrStages->pageLayoutFilterIdx()) {
page_layout_task = m_ptrStages->pageLayoutFilter()->createTask(
page.id(), output_task, batch, debug
);
debug = false;
}
if (last_filter_idx >= m_ptrStages->selectContentFilterIdx()) {
select_content_task = m_ptrStages->selectContentFilter()->createTask(
page.id(), page_layout_task, batch, debug
);
debug = false;
}
if (last_filter_idx >= m_ptrStages->deskewFilterIdx()) {
deskew_task = m_ptrStages->deskewFilter()->createTask(
page.id(), select_content_task, batch, debug
);
debug = false;
}
if (last_filter_idx >= m_ptrStages->pageSplitFilterIdx()) {
page_split_task = m_ptrStages->pageSplitFilter()->createTask(
page, deskew_task, batch, debug
);
debug = false;
}
if (last_filter_idx >= m_ptrStages->fixOrientationFilterIdx()) {
fix_orientation_task = m_ptrStages->fixOrientationFilter()->createTask(
page.id(), page_split_task, batch
);
debug = false;
}
assert(fix_orientation_task);
return BackgroundTaskPtr(
new LoadFileTask(
BackgroundTask::BATCH,
page, m_ptrThumbnailCache, m_ptrPages, fix_orientation_task
)
);
}
// process the image vector **images** and save output to **output_dir**
void
ConsoleBatch::process()
{
CommandLine const& cli = CommandLine::get();
int startFilterIdx = m_ptrStages->fixOrientationFilterIdx();
if (cli.hasStartFilterIdx()) {
unsigned int sf = cli.getStartFilterIdx();
if (sf<0 || sf>=m_ptrStages->filters().size())
throw std::runtime_error("Start filter out of range");
startFilterIdx = sf;
}
int endFilterIdx = m_ptrStages->outputFilterIdx();
if (cli.hasEndFilterIdx()) {
unsigned int ef = cli.getEndFilterIdx();
if (ef<0 || ef>=m_ptrStages->filters().size())
throw std::runtime_error("End filter out of range");
endFilterIdx = ef;
}
for (int j=startFilterIdx; j<=endFilterIdx; j++) {
if (cli.isVerbose())
std::cout << "Filter: " << (j+1) << "\n";
PageSequence page_sequence = m_ptrPages->toPageSequence(PAGE_VIEW);
setupFilter(j, page_sequence.selectAll());
for (unsigned i=0; i<page_sequence.numPages(); i++) {
PageInfo page = page_sequence.pageAt(i);
if (cli.isVerbose())
std::cout << "\tProcessing: " << page.imageId().filePath().toAscii().constData() << "\n";
BackgroundTaskPtr bgTask = createCompositeTask(page, j);
(*bgTask)();
}
}
}
void
ConsoleBatch::saveProject(QString const project_file)
{
PageInfo fpage = m_ptrPages->toPageSequence(PAGE_VIEW).pageAt(0);
SelectedPage sPage(fpage.id(), IMAGE_VIEW);
ProjectWriter writer(m_ptrPages, sPage, m_outFileNameGen);
writer.write(project_file, m_ptrStages->filters());
}
void
ConsoleBatch::setupFilter(int idx, std::set<PageId> allPages)
{
if (idx == m_ptrStages->fixOrientationFilterIdx())
setupFixOrientation(allPages);
else if (idx == m_ptrStages->pageSplitFilterIdx())
setupPageSplit(allPages);
else if (idx == m_ptrStages->deskewFilterIdx())
setupDeskew(allPages);
else if (idx == m_ptrStages->selectContentFilterIdx())
setupSelectContent(allPages);
else if (idx == m_ptrStages->pageLayoutFilterIdx())
setupPageLayout(allPages);
else if (idx == m_ptrStages->outputFilterIdx())
setupOutput(allPages);
}
void
ConsoleBatch::setupFixOrientation(std::set<PageId> allPages)
{
IntrusivePtr<fix_orientation::Filter> fix_orientation = m_ptrStages->fixOrientationFilter();
CommandLine const& cli = CommandLine::get();
for (std::set<PageId>::iterator i=allPages.begin(); i!=allPages.end(); i++) {
PageId page = *i;
OrthogonalRotation rotation;
// FIX ORIENTATION FILTER
if (cli.hasOrientation()) {
switch(cli.getOrientation()) {
case CommandLine::LEFT:
rotation.prevClockwiseDirection();
break;
case CommandLine::RIGHT:
rotation.nextClockwiseDirection();
break;
case CommandLine::UPSIDEDOWN:
rotation.nextClockwiseDirection();
rotation.nextClockwiseDirection();
break;
default:
break;
}
fix_orientation->getSettings()->applyRotation(page.imageId(), rotation);
}
}
}
void
ConsoleBatch::setupPageSplit(std::set<PageId> allPages)
{
IntrusivePtr<page_split::Filter> page_split = m_ptrStages->pageSplitFilter();
CommandLine const& cli = CommandLine::get();
// PAGE SPLIT
if (cli.hasLayout()) {
page_split->getSettings()->setLayoutTypeForAllPages(cli.getLayout());
}
}
void
ConsoleBatch::setupDeskew(std::set<PageId> allPages)
{
IntrusivePtr<deskew::Filter> deskew = m_ptrStages->deskewFilter();
CommandLine const& cli = CommandLine::get();
for (std::set<PageId>::iterator i=allPages.begin(); i!=allPages.end(); i++) {
PageId page = *i;
// DESKEW FILTER
OrthogonalRotation rotation;
if (cli.hasDeskewAngle() || cli.hasDeskew()) {
double angle = 0.0;
if (cli.hasDeskewAngle())
angle = cli.getDeskewAngle();
deskew::Dependencies deps(QPolygonF(), rotation);
deskew::Params params(angle, deps, MODE_MANUAL);
deskew->getSettings()->setPageParams(page, params);
}
}
}
void
ConsoleBatch::setupSelectContent(std::set<PageId> allPages)
{
IntrusivePtr<select_content::Filter> select_content = m_ptrStages->selectContentFilter();
CommandLine const& cli = CommandLine::get();
for (std::set<PageId>::iterator i=allPages.begin(); i!=allPages.end(); i++) {
PageId page = *i;
// SELECT CONTENT FILTER
if (cli.hasContentRect()) {
QRectF rect(cli.getContentRect());
QSizeF size_mm(rect.width(), rect.height());
select_content::Dependencies deps;
select_content::Params params(rect, size_mm, deps, MODE_MANUAL);
select_content->getSettings()->setPageParams(page, params);
}
}
}
void
ConsoleBatch::setupPageLayout(std::set<PageId> allPages)
{
IntrusivePtr<page_layout::Filter> page_layout = m_ptrStages->pageLayoutFilter();
CommandLine const& cli = CommandLine::get();
for (std::set<PageId>::iterator i=allPages.begin(); i!=allPages.end(); i++) {
PageId page = *i;
// PAGE LAYOUT FILTER
page_layout::Alignment alignment = cli.getAlignment();
if (cli.hasMargins())
page_layout->getSettings()->setHardMarginsMM(page, cli.getMargins());
if (cli.hasAlignment())
page_layout->getSettings()->setPageAlignment(page, alignment);
}
}
void
ConsoleBatch::setupOutput(std::set<PageId> allPages)
{
IntrusivePtr<output::Filter> output = m_ptrStages->outputFilter();
CommandLine const& cli = CommandLine::get();
for (std::set<PageId>::iterator i=allPages.begin(); i!=allPages.end(); i++) {
PageId page = *i;
// OUTPUT FILTER
output::Params params(output->getSettings()->getParams(page));
if (cli.hasOutputDpi()) {
Dpi outputDpi = cli.getOutputDpi();
params.setOutputDpi(outputDpi);
}
output::ColorParams colorParams = params.colorParams();
if (cli.hasColorMode())
colorParams.setColorMode(cli.getColorMode());
if (cli.hasWhiteMargins() || cli.hasNormalizeIllumination()) {
output::ColorGrayscaleOptions cgo;
if (cli.hasWhiteMargins())
cgo.setWhiteMargins(true);
if (cli.hasNormalizeIllumination())
cgo.setNormalizeIllumination(true);
colorParams.setColorGrayscaleOptions(cgo);
}
if (cli.hasThreshold()) {
output::BlackWhiteOptions bwo;
bwo.setThresholdAdjustment(cli.getThreshold());
colorParams.setBlackWhiteOptions(bwo);
}
params.setColorParams(colorParams);
if (cli.hasDespeckle())
params.setDespeckleLevel(cli.getDespeckleLevel());
if (cli.hasDewarping())
params.setDewarpingMode(cli.getDewarpingMode());
if (cli.hasDepthPerception())
params.setDepthPerception(cli.getDepthPerception());
output->getSettings()->setParams(page, params);
}
}