Fix wrong parameter name and documentation

set_only_init_params -> set_only_non_debug_params
This commit is contained in:
Robert Pösel 2021-04-19 16:55:01 +02:00
parent 2dfa38a072
commit c74ff1259b
2 changed files with 7 additions and 7 deletions

View File

@ -376,8 +376,8 @@ int Tesseract::init_tesseract(const std::string &arg0, const std::string &textba
// vars_vec is an optional vector of variables to set. // vars_vec is an optional vector of variables to set.
// vars_values is an optional corresponding vector of values for the variables // vars_values is an optional corresponding vector of values for the variables
// in vars_vec. // in vars_vec.
// If set_only_init_params is true, then only the initialization variables // If set_only_non_debug_params is true, only params that do not contain
// will be set. // "debug" in the name will be set.
int Tesseract::init_tesseract_internal(const std::string &arg0, const std::string &textbase, int Tesseract::init_tesseract_internal(const std::string &arg0, const std::string &textbase,
const std::string &language, OcrEngineMode oem, const std::string &language, OcrEngineMode oem,
char **configs, int configs_size, char **configs, int configs_size,

View File

@ -491,7 +491,7 @@ public:
int init_tesseract(const std::string &arg0, const std::string &textbase, int init_tesseract(const std::string &arg0, const std::string &textbase,
const std::string &language, OcrEngineMode oem, char **configs, const std::string &language, OcrEngineMode oem, char **configs,
int configs_size, const std::vector<std::string> *vars_vec, int configs_size, const std::vector<std::string> *vars_vec,
const std::vector<std::string> *vars_values, bool set_only_init_params, const std::vector<std::string> *vars_values, bool set_only_non_debug_params,
TessdataManager *mgr); TessdataManager *mgr);
int init_tesseract(const std::string &datapath, const std::string &language, OcrEngineMode oem) { int init_tesseract(const std::string &datapath, const std::string &language, OcrEngineMode oem) {
TessdataManager mgr; TessdataManager mgr;
@ -511,13 +511,13 @@ public:
// vars_vec is an optional vector of variables to set. // vars_vec is an optional vector of variables to set.
// vars_values is an optional corresponding vector of values for the variables // vars_values is an optional corresponding vector of values for the variables
// in vars_vec. // in vars_vec.
// If set_only_init_params is true, then only the initialization variables // If set_only_non_debug_params is true, only params that do not contain
// will be set. // "debug" in the name will be set.
int init_tesseract_internal(const std::string &arg0, const std::string &textbase, int init_tesseract_internal(const std::string &arg0, const std::string &textbase,
const std::string &language, OcrEngineMode oem, char **configs, const std::string &language, OcrEngineMode oem, char **configs,
int configs_size, const std::vector<std::string> *vars_vec, int configs_size, const std::vector<std::string> *vars_vec,
const std::vector<std::string> *vars_values, const std::vector<std::string> *vars_values,
bool set_only_init_params, TessdataManager *mgr); bool set_only_non_debug_params, TessdataManager *mgr);
// Set the universal_id member of each font to be unique among all // Set the universal_id member of each font to be unique among all
// instances of the same font loaded. // instances of the same font loaded.
@ -533,7 +533,7 @@ public:
const std::string &language, OcrEngineMode oem, char **configs, const std::string &language, OcrEngineMode oem, char **configs,
int configs_size, const std::vector<std::string> *vars_vec, int configs_size, const std::vector<std::string> *vars_vec,
const std::vector<std::string> *vars_values, const std::vector<std::string> *vars_values,
bool set_only_init_params, TessdataManager *mgr); bool set_only_non_debug_params, TessdataManager *mgr);
void ParseLanguageString(const std::string &lang_str, std::vector<std::string> *to_load, void ParseLanguageString(const std::string &lang_str, std::vector<std::string> *to_load,
std::vector<std::string> *not_to_load); std::vector<std::string> *not_to_load);