/usr/share/doc/unpaper/README.md is in unpaper 6.1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | unpaper
=======
Originally written by Jens Gulden — see AUTHORS for more information.
Licensed under GNU GPL v2 — see COPYING for more information.
Overview
--------
`unpaper` is a post-processing tool for scanned sheets of paper,
especially for book pages that have been scanned from previously
created photocopies. The main purpose is to make scanned book pages
better readable on screen after conversion to PDF. Additionally,
`unpaper` might be useful to enhance the quality of scanned pages
before performing optical character recognition (OCR).
`unpaper` tries to clean scanned images by removing dark edges that
appeared through scanning or copying on areas outside the actual page
content (e.g. dark areas between the left-hand-side and the
right-hand-side of a double- sided book-page scan).
The program also tries to detect misaligned centering and rotation of
pages and will automatically straighten each page by rotating it to
the correct angle. This process is called "deskewing".
Note that the automatic processing will sometimes fail. It is always a
good idea to manually control the results of unpaper and adjust the
parameter settings according to the requirements of the input. Each
processing step can also be disabled individually for each sheet.
See [further documentation][3] for the supported file formats notes.
Dependencies
------------
The only hard dependency of `unpaper` is [libav][4], which is used for
file input and output.
At the time of writing, any version of libav can be used, and at least
from version 9 it supports a superset of the file formats supported by
`unpaper` before version 6.
The yet to be released version 11 is recommended, once available, as
it has better support for TIFF files, including a faster, less
memory-consuming support for grayscale TIFF files, and support for
grayscale and alpha files.
Building instructions
---------------------
`unpaper` uses GNU Autotools for its build system, so you should be
able to execute the same commands used for other software packages:
./configure
make
sudo make install
There are, though, some recommendations about the way you build the
code. Since the tasks are calculation-intensive, it is important to
build with optimizations turned on:
./configure CFLAGS="-O2 -march-native -pipe"
Even better, if your compiler supports it, is to use Link-Time
Optimizations, as that has shown that execution time can improve
sensibly:
./configure CFLAGS="-O2 -march=native -pipe -flto"
Further optimizations such as `-ftracer` and `-ftree-vectorize` are
thought to work, but their effect has not been evaluated so your
mileage may vary.
Further Information
-------------------
You can find more information on the [basic concepts][1] and the
[image processing][2] in the available documentation.
[1]: doc/basic-concepts.md
[2]: doc/image-processing.md
[3]: doc/file-formats.md
[4]: https://libav.org/
|