Scripts used to process a book scanned through a Flatbed Scanner.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
Pedro Sá Couto 33fee06e18 Update 'readme.md' pirms 4 gadiem
scans needs test pirms 4 gadiem
.DS_Store needs test pirms 4 gadiem
bounding_box.py needs test pirms 4 gadiem
burstpdf.py needs test pirms 4 gadiem
chmod.sh needs test pirms 4 gadiem
merge_files.sh needs test pirms 4 gadiem
merge_scans.sh needs test pirms 4 gadiem
readme.md Update 'readme.md' pirms 4 gadiem
tesseract_ocr.py needs test pirms 4 gadiem
workshop_stream.sh needs test pirms 4 gadiem

readme.md

Flatbed_Scanner_Workflow

Getting started

This set of scripts was written for the Text Laundrette workshop. The workshop takes place in the Publication Station, WDkA building.
Rotterdam, 03-02-2020
It is a workflow to turn the pictures from a Flatbed Scanner into a final OCRed PDF.

About the Workshop

DESCRIPTION

We will use a home-made, DIY book scanner, and open-source software to scan, process, and add digital features to printed texts brought by the participants to the workshop. Ultimately, we will include them in the “bootleg library”, a shadow library accessible over a local network.

Shadow libraries operate outside of legal copyright frameworks, in response to decreased open access to knowledge. This workshop aims to extend our research on libraries, their sociability, and methods by which we can add provenance to texts included in public or private, legal or extra-legal collections.

Participants should bring: a printed text, which theyd like to digitize and share.



##Dependencies ###Brew (MAC) or apt-get (LINUX)

Youll need the command-line tools for Xcode installed.

xcode-select --install

After install Homebrew.

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

Run the following command once youre done to ensure Homebrew is installed and working properly:

brew doctor
sudo apt-get install python3 python3-pip imagemagick poppler pdfunite
brew install python3 python3-pip imagemagick poppler pdfunite

###PIP3
sudo pip3 install pdf2image Pillow time logging opencv-python pytesseract

##How to use

Your scans must look like this for the scripts to perform right.

                               RIGHT PAGE
                         —————————————————————
                        |                     |
                        |——————————           |
                        |           |         |
                        |           |         |
                        |           |         |
                        |           |         |
                        |           |         |
                        |        01 |         |
                        |——————————           |
                        |                     |
                         —————————————————————

  LEFT PAGE                RIGHT PAGE
 —————————————————————   —————————————————————
|                     | |                     |
|           ——————————| |——————————           |
|         |           | |           |         |
|         |           | |           |         |
|         |           | |           |         |
|         |           | |           |         |
|         |           | |           |         |
|         | 02        | |        03 |         |
|          —————————— | |——————————           |
|                     | |                     |
 —————————————————————   —————————————————————

Add your pictures from the book scanner to the folder "/scans"

Make all the files executable.

sudo chmod 777 merge_scans.sh workshop_stream.sh marge_files.sh

In case you want to skip any of the scripts just comment out in the shell code, workshop_stream.sh.

Run ./workshop_stream.sh

Wait :)



##Aditional information The workflow follows these scripts, by successive order:

###Create 3 directories

mkdir split
mkdir ocred
mkdir cropped

###Merge the files in the directory scans

All the scans will be appended to one pdf called out.pdf

```bash ./merge_scans.sh ```

###Burst the pdf in scans

Burst this pdf, renaming all the files so they can be iterated later.

```bash python3 burstpdf.py ```

###Cropping the bounding boxes

The pages are now in their original position, but they have a bounding box. This script iterates through them and crops the highest contrast area found.

```bash python3 bounding_box.py ```

###OCR

In this part we OCR the jpg, turning these into PDFs.

```bash python3 tesseract_ocr.py ```

###Merge all the files and create the pdf

The OCRed pages are now joined into their final PDF, your book is ready :)

```bash ./merge_files.sh ```

## License The package is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).