mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-11-30 23:49:05 +08:00
Fix reading of parameter from traineddata normproto component
The NonEssential parameter was wrongly derived from linear_token instead of essential_token and therefore always set to true. Signed-off-by: Stefan Weil <sw@weilnetz.de>
This commit is contained in:
parent
c07bc4e014
commit
c76ceafcdf
@ -154,7 +154,7 @@ PARAM_DESC *ReadParamDesc(TFile *fp, uint16_t N) {
|
||||
linear_token, essential_token, &ParamDesc[i].Min,
|
||||
&ParamDesc[i].Max) == 4);
|
||||
ParamDesc[i].Circular = (linear_token[0] == 'c');
|
||||
ParamDesc[i].NonEssential = (linear_token[0] != 'e');
|
||||
ParamDesc[i].NonEssential = (essential_token[0] != 'e');
|
||||
ParamDesc[i].Range = ParamDesc[i].Max - ParamDesc[i].Min;
|
||||
ParamDesc[i].HalfRange = ParamDesc[i].Range / 2;
|
||||
ParamDesc[i].MidRange = (ParamDesc[i].Max + ParamDesc[i].Min) / 2;
|
||||
|
Loading…
Reference in New Issue
Block a user