mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2025-01-18 06:30:14 +08:00
Merge branch 'master' of https://github.com/tesseract-ocr/tesseract
This commit is contained in:
commit
63674d3285
@ -25,7 +25,7 @@ common_settings:
|
||||
|
||||
options:
|
||||
any:
|
||||
compiler_options:
|
||||
compile_options:
|
||||
msvc:
|
||||
private:
|
||||
- /openmp
|
||||
|
@ -8,7 +8,7 @@ tesseract - command-line OCR engine
|
||||
|
||||
SYNOPSIS
|
||||
--------
|
||||
*tesseract* 'imagename'|'stdin' 'outputbase'|'stdout' [options...] [configfile...]
|
||||
*tesseract* 'imagename'|'listname'|'stdin' 'outputbase'|'stdout' [options...] [configfile...]
|
||||
|
||||
DESCRIPTION
|
||||
-----------
|
||||
@ -24,6 +24,11 @@ IN/OUT ARGUMENTS
|
||||
The name of the input image. Most image file formats (anything
|
||||
readable by Leptonica) are supported.
|
||||
|
||||
'listname'::
|
||||
The name of a text file which lists the names of all input images
|
||||
(one image name per line). The results will be combined in a
|
||||
single file for each output file format (txt, pdf, hocr).
|
||||
|
||||
'stdin'::
|
||||
Instruction to read data from standard input
|
||||
|
||||
|
@ -79,8 +79,7 @@ bool ParamUtils::ReadParamsFromFp(SetParamConstraint constraint, TFile *fp,
|
||||
|
||||
if (!foundit) {
|
||||
anyerr = true; // had an error
|
||||
tprintf("read_params_file: parameter not found: %s\n", line);
|
||||
exit(1);
|
||||
tprintf("Warning: Parameter not found: %s\n", line);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -37,8 +37,6 @@ struct addrinfo {
|
||||
#include <pthread.h>
|
||||
#include <semaphore.h>
|
||||
#include <csignal>
|
||||
#include <cstdlib>
|
||||
#include <cstring>
|
||||
#include <sys/select.h>
|
||||
#include <sys/socket.h>
|
||||
#ifdef __linux__
|
||||
|
Loading…
Reference in New Issue
Block a user