10

私はtesseract OCRが初めてです。画像を tif に変換して実行し、Windows で cmd を使用して tesseract からの出力を確認しようとしましたが、できませんでした。手伝って頂けますか?使用するコマンドは何ですか?

ここに私のサンプル画像があります:

ここに画像の説明を入力

4

1 に答える 1

18

最も単純な tesseract.exe 構文は、tesseract.exe inputimage output-text-file. ここでは、tesseract.exe がPATH環境変数に追加されていることを前提としています。-psm Nテキスト引数が特に認識しにくい場合は、引数を追加できます。

精度のレベルが十分でない限り、通常の構文 (-psmスイッチなし) は、添付した画像で十分に機能することがわかります。

英語以外の文字 (処方箋の横にある記号など) は認識されないことに注意してください。デフォルトのインストールには、英語のトレーニング データのみが含まれています。

tesseract 構文の説明は次のとおりです。

C:\Users\vish\Desktop>tesseract.exe
Usage:tesseract.exe imagename outputbase [-l lang] [-psm pagesegmode] [configfile...]

pagesegmode values are:
0 = Orientation and script detection (OSD) only.
1 = Automatic page segmentation with OSD.
2 = Automatic page segmentation, but no OSD, or OCR
3 = Fully automatic page segmentation, but no OSD. (Default)
4 = Assume a single column of text of variable sizes.
5 = Assume a single uniform block of vertically aligned text.
6 = Assume a single uniform block of text.
7 = Treat the image as a single text line.
8 = Treat the image as a single word.
9 = Treat the image as a single word in a circle.
10 = Treat the image as a single character.
-l lang and/or -psm pagesegmode must occur before anyconfigfile.

Single options:
  -v --version: version info
  --list-langs: list available languages for tesseract engine

そして、これがあなたの画像の出力です(注:ダウンロードすると、PNG画像に変換されました):

C:\Users\vish\Desktop>tesseract.exe ECL8R.png out.txt
Tesseract Open Source OCR Engine v3.02 with Leptonica

C:\Users\vish\Desktop>type out.txt.txt
1 Project Background

A prescription (R) is a written order by a physician or medical doctor to a pharmacist in the form of
medication instructions for an individual patient. You can't get prescription medicines unless someone
with authority prescribes them. Usually, this means a written prescription from your doctor. Dentists,

optometrists, midwives and nurse practitioners may also be authorized to prescribe medicines for you.

It can also be defined as an order to take certain medications.

A prescription has legal implications; this means the prescriber must assume his responsibility for the
clinical care ofthe patient.

Recently, the term "prescriptionΓÇ¥ has known a wider usage being used for clinical assessments,
于 2014-10-17T05:31:28.893 に答える