我想在 .Net 中使用 Tesseract OCR-Engine 进行 OCR。因此我使用 tesseractdotnet-Wrapper 1。我需要获取每个识别单词的单词位置(RetriveResultDetail-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();
不幸的是 wordList 总是null
尽管 Apply-Method 在控制台显示文本结果。