| PageSegMode Enumeration |
Represents the possible page segmentation modes of the Tesseract OCR engine.
Namespace:
Opait.Api
Assembly:
Opait.Core (in Opait.Core.dll) Version: 1.3.3.0
Syntax Members
| Member name | Value | Description |
---|
| OsdOnly | 0 |
Orientation and Script Detection (OSD) only.
|
| AutoOsd | 1 |
Automatic page segmentation with orientation and script detection (OSD).
|
| AutoOnly | 2 |
Automatic page segmentation, but no OSD, or OCR.
|
| Auto | 3 |
Fully automatic page segmentation, but no OSD.
|
| SingleColumn | 4 |
Assume a single column of text of variable sizes.
|
| SingleBlockVertText | 5 |
Assume a single uniform block of vertically aligned text.
|
| SingleBlock | 6 |
Assume a single uniform block of text.
|
| SingleLine | 7 |
Treat the image as a single text line.
|
| SingleWord | 8 |
Treat the image as a single word.
|
| CircleWord | 9 |
Treat the image as a single word in a circle.
|
| SingleChar | 10 |
Treat the image as a single character.
|
| SparseText | 11 |
Document contains sparse text.
|
| SparseTextOsd | 12 |
Sparse text with orientation and script detection.
|
| RawLine | 13 |
Treat the image as a single text line, bypassing hacks
that are Tesseract-specific.
|
See Also