How to scan documents: Difference between revisions

From Wildsong
Jump to navigationJump to search
Brian Wilson (talk | contribs)
Brian Wilson (talk | contribs)
 
(4 intermediate revisions by the same user not shown)
Line 16: Line 16:
# Start it up.
# Start it up.
# File->Import to load the raw PDF
# File->Import to load the raw PDF
# Tools->Threshold will help eliminate the ghosts.
# Tools->Cleanup to run 'unpaper' over the doc. This will clean up the pages and deskew them. The pages get cockeyed when they go through the ADF (automatic document feeder) and this straightens them up.
# Tools->Cleanup to run 'unpaper' over the doc. This will clean up the pages and deskew them. The pages get cockeyed when they go through the ADF (automatic document feeder) and this straightens them up.
# OCR - select an engine, GOCR, Tesseract, Cuneiform are the choices.
# Tools->OCR - select an engine, GOCR, Tesseract, Cuneiform are the choices.
# Work around for Save bug: save as a session then exit, restart, reload session file and save as PDF.
 
In my test, I ran Tesseract over the entire manual and watched the console window. I saw errors on some pages.  


Doing the OCR creates a text version of each scanned page, that allows the PDF to be searchable.
Doing the OCR creates a text version of each scanned page, that allows the PDF to be searchable.
== OCR ==


== Compress ==
== Compress ==
Line 27: Line 29:
I am trying out the djvu format, it seems like a good way to manage the scanned pages. Compression is very good. See http://djvu.org/
I am trying out the djvu format, it seems like a good way to manage the scanned pages. Compression is very good. See http://djvu.org/


# Convert the scanned PDF documents to DJVU documents, 1 per page. ''mkdir f && pdf2djvu -i f frontpages.pdf''
DJVU is an alternative to PDF. It uses wavelet compression.
# Optionally perform any additional processing on the individual pages, such as image filtering or contrast enhancement.
# Perform OCR on the individual page files so they can be searched separately
# Merge the page files into one DJVU bundle, making sure they get into the right order. (QA!)


== Ubuntu Notes ==
== Ubuntu Notes ==


Packages under Ubuntu are
Installing the '''gscan2pdf''' package pulled in sundry and various useful things such as unpaper (to clean up scans) and cuneiform (the OCR program that Canonical has blessed at 10.10) and djvu2pdf.
* poppler-utils (PDF utilities)
* psutils (Postscript utilities)
* tesseract (OCR software)


Installing the gscan2pdf package pulled in sundry and various useful things such as cuneiform (the OCR program that Canonical has blessed at 10.10) and djvu2pdf.
I installed the '''teserract''' OCR program as well.


On the Mac I use the viewer djview-libre which is also available for Linux and Windows.
On the Mac I use the viewer djview-libre which is also available for Linux and Windows.

Latest revision as of 06:06, 5 December 2010

Scan

I have access to a Brother scanner that has a document feed on it. It scans a multipage doc and puts the output into a PDF file on my server via FTP.

  1. Scan the odd pages, front to back, resulting in a single PDF file.
  2. Scan the even pages, back to front, resulting in a second PDF file.
  3. If you have it, you can use Adobe Acrobat to collate the files into a single PDF.

I scan at 300 DPI grey scale, with the scanner doing conversion to PDF and upload to a server via FTP. 300 is probably overkill for text but line art looks good. I note also that for the manuals I just scanned I can actually see ghosts of what's printed on the other side of two sided pages.

OCR

Run gscan2pdf and you can perform all the steps needed to go from raw scan to polished PDF doc.

  1. Start it up.
  2. File->Import to load the raw PDF
  3. Tools->Threshold will help eliminate the ghosts.
  4. Tools->Cleanup to run 'unpaper' over the doc. This will clean up the pages and deskew them. The pages get cockeyed when they go through the ADF (automatic document feeder) and this straightens them up.
  5. Tools->OCR - select an engine, GOCR, Tesseract, Cuneiform are the choices.
  6. Work around for Save bug: save as a session then exit, restart, reload session file and save as PDF.

In my test, I ran Tesseract over the entire manual and watched the console window. I saw errors on some pages.

Doing the OCR creates a text version of each scanned page, that allows the PDF to be searchable.

Compress

I am trying out the djvu format, it seems like a good way to manage the scanned pages. Compression is very good. See http://djvu.org/

DJVU is an alternative to PDF. It uses wavelet compression.

Ubuntu Notes

Installing the gscan2pdf package pulled in sundry and various useful things such as unpaper (to clean up scans) and cuneiform (the OCR program that Canonical has blessed at 10.10) and djvu2pdf.

I installed the teserract OCR program as well.

On the Mac I use the viewer djview-libre which is also available for Linux and Windows.

See also

How to scan and OCR like a pro with open source tools from the Linux.com site