tesseract
4.0.0-1-g2a2b
|
Go to the source code of this file.
Macros | |
#define | TOKENSIZE 80 |
#define | QUOTED_TOKENSIZE "79" |
#define | MAXSAMPLESIZE 65535 |
Functions | |
uint16_t | ReadSampleSize (TFile *fp) |
PARAM_DESC * | ReadParamDesc (TFile *fp, uint16_t N) |
PROTOTYPE * | ReadPrototype (TFile *fp, uint16_t N) |
float * | ReadNFloats (TFile *fp, uint16_t N, float Buffer[]) |
void | WriteParamDesc (FILE *File, uint16_t N, const PARAM_DESC ParamDesc[]) |
void | WritePrototype (FILE *File, uint16_t N, PROTOTYPE *Proto) |
void | WriteNFloats (FILE *File, uint16_t N, float Array[]) |
void | WriteProtoStyle (FILE *File, PROTOSTYLE ProtoStyle) |
void | WriteProtoList (FILE *File, uint16_t N, PARAM_DESC *ParamDesc, LIST ProtoList, bool WriteSigProtos, bool WriteInsigProtos) |
#define MAXSAMPLESIZE 65535 |
Definition at line 29 of file clusttool.cpp.
#define QUOTED_TOKENSIZE "79" |
Definition at line 28 of file clusttool.cpp.
#define TOKENSIZE 80 |
Definition at line 27 of file clusttool.cpp.
float* ReadNFloats | ( | TFile * | fp, |
uint16_t | N, | ||
float | Buffer[] | ||
) |
This routine reads N floats from the specified text file and places them into Buffer. If Buffer is nullptr, a buffer is created and passed back to the caller. If EOF is encountered before any floats can be read, nullptr is returned.
fp | open text file to read floats from |
N | number of floats to read |
Buffer | pointer to buffer to place floats into |
Definition at line 186 of file clusttool.cpp.
PARAM_DESC* ReadParamDesc | ( | TFile * | fp, |
uint16_t | N | ||
) |
This routine reads textual descriptions of sets of parameters which describe the characteristics of feature dimensions.
fp | open text file to read N parameter descriptions from |
N | number of parameter descriptions to read |
Definition at line 61 of file clusttool.cpp.
This routine reads a textual description of a prototype from the specified file.
fp | open text file to read prototype from |
N | number of dimensions used in prototype |
Definition at line 99 of file clusttool.cpp.
uint16_t ReadSampleSize | ( | TFile * | fp | ) |
This routine reads a single integer from the specified file and checks to ensure that it is between 0 and MAXSAMPLESIZE.
fp | open text file to read sample size from |
Definition at line 41 of file clusttool.cpp.
void WriteNFloats | ( | FILE * | File, |
uint16_t | N, | ||
float | Array[] | ||
) |
This routine writes a text representation of N floats from an array to a file. All of the floats are placed on one line.
File | open text file to write N floats to |
N | number of floats to write |
Array | array of floats to write |
Definition at line 298 of file clusttool.cpp.
void WriteParamDesc | ( | FILE * | File, |
uint16_t | N, | ||
const PARAM_DESC | ParamDesc[] | ||
) |
This routine writes an array of dimension descriptors to the specified text file.
File | open text file to write param descriptors to |
N | number of param descriptors to write |
ParamDesc | array of param descriptors to write |
Definition at line 223 of file clusttool.cpp.
void WriteProtoList | ( | FILE * | File, |
uint16_t | N, | ||
PARAM_DESC * | ParamDesc, | ||
LIST | ProtoList, | ||
bool | WriteSigProtos, | ||
bool | WriteInsigProtos | ||
) |
This routine writes a textual description of each prototype in the prototype list to the specified file. It also writes a file header which includes the number of dimensions in feature space and the descriptions for each dimension.
File | open text file to write prototypes to |
N | number of dimensions in feature space |
ParamDesc | descriptions for each dimension |
ProtoList | list of prototypes to be written |
WriteSigProtos | TRUE to write out significant prototypes |
WriteInsigProtos | TRUE to write out insignificants |
Definition at line 345 of file clusttool.cpp.
void WriteProtoStyle | ( | FILE * | File, |
PROTOSTYLE | ProtoStyle | ||
) |
This routine writes to the specified text file a word which represents the ProtoStyle. It does not append a carriage return to the end.
File | open text file to write prototype style to |
ProtoStyle | prototype style to write |
Definition at line 313 of file clusttool.cpp.
void WritePrototype | ( | FILE * | File, |
uint16_t | N, | ||
PROTOTYPE * | Proto | ||
) |
This routine writes a textual description of a prototype to the specified text file.
File | open text file to write prototype to |
N | number of dimensions in feature space |
Proto | prototype to write out |
Definition at line 250 of file clusttool.cpp.