Skip to content

Commit 424dbd5

Browse files
committed
improve description of min_characters_to_try variable
1 parent 1e4768c commit 424dbd5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/ccmain/tesseractclass.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -398,8 +398,8 @@ Tesseract::Tesseract()
398398
INT_MEMBER(user_defined_dpi, 0, "Specify DPI for input image",
399399
this->params()),
400400
INT_MEMBER(min_characters_to_try, 50,
401-
"Specify minimum characters to try to skip page entirely",
402-
this->params()),
401+
"Specify minimum characters to try during OSD",
402+
this->params()),
403403
STRING_MEMBER(unrecognised_char, "|",
404404
"Output char for unidentified blobs", this->params()),
405405
INT_MEMBER(suspect_level, 99, "Suspect marker level", this->params()),

src/ccmain/tesseractclass.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1044,7 +1044,7 @@ class Tesseract : public Wordrec {
10441044
INT_VAR_H(jpg_quality, 85, "Set JPEG quality level");
10451045
INT_VAR_H(user_defined_dpi, 0, "Specify DPI for input image");
10461046
INT_VAR_H(min_characters_to_try, 50,
1047-
"Specify minimum characters to try to skip page entirely");
1047+
"Specify minimum characters to try during OSD");
10481048
STRING_VAR_H(unrecognised_char, "|",
10491049
"Output char for unidentified blobs");
10501050
INT_VAR_H(suspect_level, 99, "Suspect marker level");

0 commit comments

Comments
 (0)