.Net で Tesseract OCR エンジンを使用して OCR を実行したいと考えています。したがって、tesseractdotnet-Wrapper 1を使用します。認識された各単語の単語位置を取得する必要があります (RetribResultDetail-Method):
TesseractProcessor ocr = new TesseractProcessor();
ocr.Init(executionPath, "eng", 3);
Image image = Image.FromFile(imagePath);
Console.WriteLine(ocr.Apply(image));
List<tesseract.Word> wordList = ocr.RetriveResultDetail();
null
残念ながら、 Apply-Method はコンソールにテキスト結果を表示しますが、wordList は常にです。