I scanned a book and OCR'd it using ABBYYY but all I really care about is the text from the OCR and that it's organized by page. Is there a tool I could use to drop all of the scanned page images but keep all of the OCR text? I realize it wouldn't be human readable at that point, but that's ok because I'm processing the PDF with Python scripts.
Is it possible to remove PDF's images and only keep the OCR'd text?
188 views Asked by Colin At
1
There are 1 answers
Related Questions in MACOS
- How do I customize NSOutlineView to have border color?
- Force sublime text to use PATH from the shell value
- Do executable files always open a terminal window on MacOS?
- setting OpenGL version in objective-C
- C std library don't appear to be linked in object file
- Cross compile simple standard C program on Linux for Mac
- How to generate request format for WCF web service method for Mac and iPhone
- Bundle Multiple Xamarin apps in one pkg installer
- How to Handle Command Line Prompt from a Cocoa App
- AVFoundation - Process each image separately
Related Questions in PDF
- Itext get special letters from pdf
- Carrierwave file upload with different file types
- Get text from a section of a pdf page with IcePdf
- itext pdf to image convert
- PDF to Text extractor in nodejs without OS dependencies
- PDF to ByteArray Conversion
- Opening PDF file in SWT Browser - XulRunner default viewer
- Generate TCPDF output to a shared drive folder
- Combine base and ggplot graphics in R figure window in different pages
- Updating a PDF Barcode Field in iOS and Android Device
Related Questions in OCR
- Tesseract - The specified module could not be found
- Linux OCR of LCD characters
- Calculating equation from image in Java
- Python Tesseract OCR training to a specific list of words
- How correct send encoded base64 image to nodeJS and get response in Java
- OCR serial number CRC, check algorithm
- How to extract a specific text from an image
- Can Tesseract be set to OCR only (no image modification) when producing a PDF?
- OCR on text stamped into metal plate
- Arabic number recognization
Related Questions in ABBYY
- Python-docx not recognizing a table
- Save and reload OCR result of Abbyy FineReader
- ABBYY FlexiCapture 12 api - Problem with upload project to server
- Build error while trying to build ABBYY Mobile OCR SDK sample code
- How to get coordinates using abbyy mobile sdk for iphone
- OCR correction with prior transcription?
- Abbyy flexicapture studio regular expressions
- Is it possible to remove PDF's images and only keep the OCR'd text?
- Export path for Abbyy Flexicapture Cloud
- ABBYY Flexicapture connect to database
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
@johnwhitington's comment to the question worked great for me. but it's not a complete answer.
cpdf -draft in.pdf -o out.pdfyou can get cpdf from https://github.com/coherentgraphics/cpdf-binaries
the
-draftoption removes images:You need to make sure you actually have text in the file first, of course - with Acrobat, that's the
editable text and imagesoption in the OCR settings - if you can copy a block of text and paste it outside and get readable text, you might have a pdf that works for this.This produces a perfectly human readable result (minus any supporting graphics, obviously).
further information and documentation on the cpdf tool can be found at:
https://www.coherentpdf.com https://www.coherentpdf.com/cpdfmanual.pdf
you may find a combination of
-draft AND -blacktextuseful (I did)