![]() |
3 years ago | |
---|---|---|
.DS_Store | 3 years ago | |
bounding_box.py | 3 years ago | |
change_res.sh | 3 years ago | |
chmod.sh | 3 years ago | |
delete_and_start_over.sh | 3 years ago | |
merge_files.sh | 3 years ago | |
mirror_crop.py | 3 years ago | |
readme.md | 3 years ago | |
remove.sh | 3 years ago | |
rename_scans.sh | 3 years ago | |
rotation.py | 3 years ago | |
tesseract_ocr.py | 3 years ago | |
workshop_stream.sh | 3 years ago |
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 the DIY Book Scanner into a final OCRed PDF.
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 they’d like to digitize and share.
You’ll 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 you’re done to ensure Homebrew is installed and working properly:
brew doctor
sudo apt-get install python3 python3-pip imagemagick poppler-utils
brew install python3 python3-pip imagemagick poppler-utils
sudo pip3 install pdf2image Pillow opencv-python pytesseract
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 rename_scans.sh change_res.sh delete_and_start_over.sh
In case you want to skip any of the scripts just comment out in the shell code, workshop_stream.sh.
nano /etc/ImageMagic-6/policy.xml
ImageMagick comes with very low limits:
Resource limits:
Width: 16KP
Height: 16KP
Area: 128MP
Memory: 256MiB
Map: 512MiB
Disk: 1GiB
File: 768
Thread: 4
Throttle: 0
Time: unlimited
change /etc/ImageMagick-6/policy.xml to more sensible defaults:
Resource limits:
Width: 128KP
Height: 128KP
Area: 1.0737GP
Memory: 2GiB
Map: 4GiB
Disk: 8GiB
File: 768
Thread: 4
Throttle: 0
Time: unlimited
In terminal run ./workshop_stream.sh
Wait :)
The workflow follows these scripts, by successive order:
mkdir split
mkdir rotated
mkdir ocred
mkdir bounding_box
mkdir cropped
All the scans will be renamed
./rename_scans.sh
Change resolution of the scans so that it is lighter to process
./change_res.sh
The book scanner takes pictures of the pdfs, this scrip iterates through the odd and even pages rotating them to their original position.
python3 rotation.py
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.
python3 bounding_box.py
The pages are now cropped, but the mirror may still be visible in the edge. This happens if the cameras are not adjusted properly. I commented it out because if the cameras are positioned correctly there is no need for this step.
python3 mirror_crop.py
In this part we OCR the jpg files, turning these into PDFs.
python3 tesseract_ocr.py
The OCRed pages are now joined into their final PDF, your book is ready :)
./merge_files.sh
Just run delete_and_start_over.sh and start over
./delete_and_start_over.sh
The package is available as open source under the terms of the MIT License.