อาจมีเครื่องมือบางอย่างที่ทำเช่นนั้น แต่คุณสามารถสร้างสคริปต์อย่างง่ายด้วยเครื่องมือจับภาพหน้าจอและ tesseract ขณะที่คุณพยายามใช้
นำตัวอย่างสคริปต์นี้ (ในระบบของฉันฉันบันทึกไว้เป็น/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
แต่มันอาจจะใช้เวลามากในการทำงาน คุณสามารถใช้สิ่งใดก็ได้ที่สามารถอ่านไฟล์ข้อความ (เปิดด้วย Text Editor แสดงข้อความที่รู้จักเป็นการแจ้งเตือน ฯลฯ )
สคริปต์ 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
นอกเหนือจากการพึ่งพาที่กล่าวข้างต้นคุณจะต้องติดตั้งZenity fork YAD จาก webupd8 PPAเพื่อให้สคริปต์ทำงานได้
gnome-screenshot -a
หรือไม่ ยังทำไมคุณท่อส่งออกไปยัง tesseract? ถ้าฉันไม่ผิด gnome-ภาพหน้าจอบันทึกภาพบนไฟล์และไม่ "พิมพ์" มัน ...