Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道如何从 Tesseract 的输出中提取行高和基线信息。
将不胜感激任何指示这样做。
谢谢, 瓦桑特
尝试这个:
Tesseract.getUtf8Text().getBoxRects()
这将为每个识别的符号返回一个边界框(矩形)数组。它们的坐标相对于您提供的位图。您可以使用这些来平均线高和基线。