http://www.emgu.com
Tesseract page segmentation mode
Namespace: Emgu.CV.OCRAssembly: Emgu.CV.OCR (in Emgu.CV.OCR.dll) Version: 3.0.0.2161 (3.0.0.2161)
SyntaxPublic Enumeration PageSegMode
public enum class PageSegMode
Members
| Member name | Value | Description |
---|
| OsdOnly | 0 |
PageOrientation and script detection 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. (Default.)
|
| 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 |
Find as much text as possible in no particular order.
|
| SparseTextOsd | 12 |
Sparse text with orientation and script det.
|
| RawLine | 13 |
Treat the image as a single text line, bypassing hacks that are Tesseract-specific.
|
| Count | 14 |
Number of enum entries.
|
See Also