javacpp tesseract から各単語の境界ボックスを抽出しようとしています。これは境界ボックスの呼び出しのようです (以下の私の完全なコード):
boolean box = ri.BoundingBox(RIL_WORD, coord1, coord2, coord3, coord4)
RIL_WORD は、単語、文、および段落に対して調整できる反復子レベルです。座標は IntPointers (javacpp に含まれるクラス) です。
API によると、これはバウンディング ボックスの座標を返しますが、代わりにブール値を返します。この時点で、境界ボックスがあることはわかっていますが、実際の座標を取得することはできません。バウンディングボックスの長方形をJava cpp tessaractから取得する方法を知っている人はいますか? 助けてくれてありがとう。例を見つけるのに非常に苦労したため、個々の単語と信頼レベルを取得するための作業コードを以下に投稿しました。
public class TesseractOCR {
public void OCRText() {
BytePointer outText;
TessBaseAPI api = new TessBaseAPI();
// Initialize tesseract-ocr with English, without specifying tessdata path
if (api.Init(null, "eng") != 0) {
System.err.println("Could not initialize tesseract.");
System.exit(1);
}
// Open input image with leptonica library
org.bytedeco.javacpp.lept.PIX image = pixRead("testimage.png");
// Get OCR result
outText = api.GetUTF8Text();
System.out.println("OCR output:\n" + outText.getString());
final ResultIterator ri = api.GetIterator();
int x1 = 0;
int y1 = 0;
int x2 = 0;
int y2 = 0;
IntPointer coord1 = new IntPointer(x1);
IntPointer coord2 = new IntPointer(y1);
IntPointer coord3 = new IntPointer(x2);
IntPointer coord4 = new IntPointer(y2);
ri.Begin();
if (ri !=null) {
do {
BytePointer word = ri.GetUTF8Text(RIL_WORD);
float conf = ri.Confidence(RIL_WORD);
boolean box = ri.BoundingBox(RIL_WORD, coord1, coord2, coord3, coord4);
System.out.println(word.getString());
System.out.println(conf);
System.out.println(box);
} while (ri.Next(RIL_WORD));
}
api.End();
outText.deallocate();
pixDestroy(image);
}
}