Enum TesseractPageSegmentationMode
Page segmentation mode defines how your text will be searched for by Tesseract.
Namespace: IronOcr
Assembly: IronOcr.dll
Syntax
public enum TesseractPageSegmentationMode
Fields
Name | Description |
---|---|
Auto | Fully automatic page segmentation, but no OSD. |
AutoOnly | Automatic page segmentation, but no OSD, or OCR. |
AutoOsd | Automatic page segmentation with orientation and script detection (OSD). |
CircleWord | Treat the image as a single word in a circle. |
OsdOnly | Orientation and script detection (OSD) only. |
RawLine | Treat the image as a single text line, bypassing hacks that are specific to Tesseract. |
SingleBlock | Assume a single uniform block of text. |
SingleBlockVertText | Assume a single uniform block of vertically aligned text. |
SingleChar | Treat the image as a single character. |
SingleColumn | Assume a single column of text of variable sizes. |
SingleLine | Treat the image as a single text line. |
SingleWord | Treat the image as a single word. |
SparseText | Find as much text as possible in no particular order. |
SparseTextOsd | Sparse text with orientation and script detection. |