हो सकता है कि पहले से ही कुछ उपकरण है जो ऐसा करता है, लेकिन आप कुछ स्क्रीनशॉट टूल और टेसरेक्ट के साथ एक सरल स्क्रिप्ट भी बना सकते हैं, जैसा कि आप उपयोग करने की कोशिश कर रहे हैं।
एक उदाहरण के रूप में इस स्क्रिप्ट को लें (अपने सिस्टम में मैंने इसे इस रूप में सहेजा है /usr/local/bin/screen_ts
):
#!/bin/bash
# Dependencies: tesseract-ocr imagemagick scrot
select tesseract_lang in eng rus equ ;do break;done
# Quick language menu, add more if you need other languages.
SCR_IMG=`mktemp`
trap "rm $SCR_IMG*" EXIT
scrot -s $SCR_IMG.png -q 100
# increase quality with option -q from default 75 to 100
# Typo "$SCR_IMG.png000" does not continue with same name.
mogrify -modulate 100,0 -resize 400% $SCR_IMG.png
#should increase detection rate
tesseract $SCR_IMG.png $SCR_IMG &> /dev/null
cat $SCR_IMG.txt
exit
और क्लिपबोर्ड समर्थन के साथ:
#!/bin/bash
# Dependencies: tesseract-ocr imagemagick scrot xsel
select tesseract_lang in eng rus equ ;do break;done
# quick language menu, add more if you need other languages.
SCR_IMG=`mktemp`
trap "rm $SCR_IMG*" EXIT
scrot -s $SCR_IMG.png -q 100
# increase image quality with option -q from default 75 to 100
mogrify -modulate 100,0 -resize 400% $SCR_IMG.png
#should increase detection rate
tesseract $SCR_IMG.png $SCR_IMG &> /dev/null
cat $SCR_IMG.txt | xsel -bi
exit
यह scrot
स्क्रीन को लेने, tesseract
पाठ को पहचानने और cat
परिणाम प्रदर्शित करने के लिए उपयोग करता है । क्लिपबोर्ड संस्करण अतिरिक्त रूप xsel
से क्लिपबोर्ड में आउटपुट को पाइप करने के लिए उपयोग करता है।
नोट : scrot
, xsel
, imagemagick
और tesseract-ocr
डिफ़ॉल्ट रूप से स्थापित नहीं कर रहे हैं लेकिन डिफ़ॉल्ट खजाने से उपलब्ध हैं।
आप के scrot
साथ बदलने में सक्षम हो सकता है gnome-screenshot
, लेकिन यह बहुत काम ले सकता है। आउटपुट के बारे में आप ऐसी किसी भी चीज़ का उपयोग कर सकते हैं जो एक टेक्स्ट फ़ाइल पढ़ सकती है (टेक्स्ट एडिटर के साथ खुला है, किसी मान्यता प्राप्त पाठ को नोटिफिकेशन आदि के रूप में दिखाएं)।
स्क्रिप्ट का GUI संस्करण
यहाँ भाषा चयन संवाद सहित OCR स्क्रिप्ट का एक सरल चित्रमय संस्करण है:
#!/bin/bash
# DEPENDENCIES: tesseract-ocr imagemagick scrot yad
# AUTHOR: Glutanimate 2013 (http://askubuntu.com/users/81372/)
# NAME: ScreenOCR
# LICENSE: GNU GPLv3
#
# BASED ON: OCR script by Salem (http://askubuntu.com/a/280713/81372)
TITLE=ScreenOCR # set yad variables
ICON=gnome-screenshot
# - tesseract won't work if LC_ALL is unset so we set it here
# - you might want to delete or modify this line if you
# have a different locale:
export LC_ALL=en_US.UTF-8
# language selection dialog
LANG=$(yad \
--width 300 --entry --title "$TITLE" \
--image=$ICON \
--window-icon=$ICON \
--button="ok:0" --button="cancel:1" \
--text "Select language:" \
--entry-text \
"eng" "ita" "deu")
# - You can modify the list of available languages by editing the line above
# - Make sure to use the same ISO codes tesseract does (man tesseract for details)
# - Languages will of course only work if you have installed their respective
# language packs (https://code.google.com/p/tesseract-ocr/downloads/list)
RET=$? # check return status
if [ "$RET" = 252 ] || [ "$RET" = 1 ] # WM-Close or "cancel"
then
exit
fi
echo "Language set to $LANG"
SCR_IMG=`mktemp` # create tempfile
trap "rm $SCR_IMG*" EXIT # make sure tempfiles get deleted afterwards
scrot -s $SCR_IMG.png -q 100 #take screenshot of area
mogrify -modulate 100,0 -resize 400% $SCR_IMG.png # postprocess to prepare for OCR
tesseract -l $LANG $SCR_IMG.png $SCR_IMG # OCR in given language
cat $SCR_IMG | xsel -bi # pass to clipboard
exit
ऊपर सूचीबद्ध निर्भरता के अलावा, आपको स्क्रिप्ट कार्य करने के लिए webupd8 PPA से Zenity कांटा YAD स्थापित करना होगा।
gnome-screenshot -a
? इसके अलावा, आप आउटपुट को टेस्सेरैक्ट करने के लिए पाइप क्यों करते हैं? अगर मैं गलत नहीं हूँ gnome- स्क्रीनशॉट एक फ़ाइल पर चित्र सहेजता है, और इसे "प्रिंट" नहीं करता है ...