Skip to content

Commit

Permalink
Add PSM values to the definition
Browse files Browse the repository at this point in the history
  • Loading branch information
Shreeshrii committed Mar 22, 2019
1 parent 8eafec0 commit 259d5af
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions src/ccstruct/publictypes.h
Expand Up @@ -161,22 +161,22 @@ enum TextlineOrder {
* so that the inequality test macros below work.
*/
enum PageSegMode {
PSM_OSD_ONLY, ///< 0 - Orientation and script detection only.
PSM_AUTO_OSD, ///< 1 - Automatic page segmentation with orientation and
PSM_OSD_ONLY = 0, ///< Orientation and script detection only.
PSM_AUTO_OSD = 1, ///< Automatic page segmentation with orientation and
///< script detection. (OSD)
PSM_AUTO_ONLY, ///< 2 - Automatic page segmentation, but no OSD, or OCR.
PSM_AUTO, ///< 3 - Fully automatic page segmentation, but no OSD.
PSM_SINGLE_COLUMN, ///< 4 - Assume a single column of text of variable sizes.
PSM_SINGLE_BLOCK_VERT_TEXT, ///< 5 - Assume a single uniform block of vertically
PSM_AUTO_ONLY = 2, ///< Automatic page segmentation, but no OSD, or OCR.
PSM_AUTO = 3, ///< Fully automatic page segmentation, but no OSD.
PSM_SINGLE_COLUMN = 4, ///< Assume a single column of text of variable sizes.
PSM_SINGLE_BLOCK_VERT_TEXT = 5, ///< Assume a single uniform block of vertically
///< aligned text.
PSM_SINGLE_BLOCK, ///< 6 - Assume a single uniform block of text. (Default.)
PSM_SINGLE_LINE, ///< 7 - Treat the image as a single text line.
PSM_SINGLE_WORD, ///< 8 - Treat the image as a single word.
PSM_CIRCLE_WORD, ///< 9 - Treat the image as a single word in a circle.
PSM_SINGLE_CHAR, ///< 10 - Treat the image as a single character.
PSM_SPARSE_TEXT, ///< 11 - Find as much text as possible in no particular order.
PSM_SPARSE_TEXT_OSD, ///< 12 - Sparse text with orientation and script det.
PSM_RAW_LINE, ///< 13 - Treat the image as a single text line, bypassing
PSM_SINGLE_BLOCK = 6, ///< Assume a single uniform block of text. (Default.)
PSM_SINGLE_LINE = 7, ///< Treat the image as a single text line.
PSM_SINGLE_WORD = 8, ///< Treat the image as a single word.
PSM_CIRCLE_WORD = 9, ///< Treat the image as a single word in a circle.
PSM_SINGLE_CHAR = 10, ///< Treat the image as a single character.
PSM_SPARSE_TEXT = 11, ///< Find as much text as possible in no particular order.
PSM_SPARSE_TEXT_OSD = 12, ///< Sparse text with orientation and script det.
PSM_RAW_LINE = 13, ///< Treat the image as a single text line, bypassing
///< hacks that are Tesseract-specific.

PSM_COUNT ///< Number of enum entries.
Expand Down

0 comments on commit 259d5af

Please sign in to comment.