de.digitalcollections.solrocr.formats.OcrBlock Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of solr-ocrhighlighting Show documentation
Show all versions of solr-ocrhighlighting Show documentation
Solr plugin to add support for highlighting directly from various OCR formats (hOCR/ALTO/MiniOCR)
without having to store the OCR documents in the index.
package de.digitalcollections.solrocr.formats;
public enum OcrBlock {
/* Order matters: From top of the page layout hierarchy to bottom */
PAGE,
BLOCK,
SECTION,
PARAGRAPH,
LINE,
WORD;
}