Skip to content

Commit

Permalink
textord debugging: invert default top/bottom bounaries, improve descr…
Browse files Browse the repository at this point in the history
…iption
  • Loading branch information
bertsky committed Aug 24, 2020
1 parent d33edbc commit 0228d93
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/textord/alignedblob.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@

INT_VAR(textord_debug_tabfind, 0, "Debug tab finding");
INT_VAR(textord_debug_bugs, 0, "Turn on output related to bugs in tab finding");
static INT_VAR(textord_testregion_left, -1, "Left edge of debug reporting rectangle");
static INT_VAR(textord_testregion_top, -1, "Top edge of debug reporting rectangle");
static INT_VAR(textord_testregion_right, INT32_MAX, "Right edge of debug rectangle");
static INT_VAR(textord_testregion_bottom, INT32_MAX, "Bottom edge of debug rectangle");
static INT_VAR(textord_testregion_left, -1, "Left edge of debug reporting rectangle in Leptonica coords (bottom=0/top=height), with horizontal lines x/y-flipped");
static INT_VAR(textord_testregion_top, INT32_MAX, "Top edge of debug reporting rectangle in Leptonica coords (bottom=0/top=height), with horizontal lines x/y-flipped");
static INT_VAR(textord_testregion_right, INT32_MAX, "Right edge of debug rectangle in Leptonica coords (bottom=0/top=height), with horizontal lines x/y-flipped");
static INT_VAR(textord_testregion_bottom, -1, "Bottom edge of debug rectangle in Leptonica coords (bottom=0/top=height), with horizontal lines x/y-flipped");
BOOL_VAR(textord_debug_printable, false, "Make debug windows printable");

namespace tesseract {
Expand Down

0 comments on commit 0228d93

Please sign in to comment.