de.digitalcollections.solrocr.solr.OcrHighlightParams 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.solr;
import org.apache.solr.common.params.HighlightParams;
public interface OcrHighlightParams extends HighlightParams {
String CONTEXT_BLOCK = "hl.ocr.contextBlock";
String CONTEXT_SIZE = "hl.ocr.contextSize";
String LIMIT_BLOCK = "hl.ocr.limitBlock";
String PAGE_ID = "hl.ocr.pageId";
String SCORE_BOOST_EARLY = "hl.score.boostEarly";
String ABSOLUTE_HIGHLIGHTS = "hl.ocr.absoluteHighlights";
}