mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-11-28 05:39:35 +08:00
Fixed build break
git-svn-id: https://tesseract-ocr.googlecode.com/svn/trunk@775 d0cd1f9f-072b-0410-8dd7-cf729c803f20
This commit is contained in:
parent
605fd7488b
commit
ca9daf2573
@ -75,13 +75,12 @@ FEATURE_SET ExtractMicros(TBLOB *Blob, const DENORM& denorm) {
|
|||||||
// Assert that feature parameters are well defined.
|
// Assert that feature parameters are well defined.
|
||||||
int i;
|
int i;
|
||||||
for (i = 0; i < Feature->Type->NumParams; i++) {
|
for (i = 0; i < Feature->Type->NumParams; i++) {
|
||||||
assert (!isnan(Feature->Params[i]));
|
ASSERT_HOST(!isnan(Feature->Params[i]));
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
AddFeature(FeatureSet, Feature);
|
AddFeature(FeatureSet, Feature);
|
||||||
}
|
}
|
||||||
FreeMicroFeatures(OldFeatures);
|
FreeMicroFeatures(OldFeatures);
|
||||||
return (FeatureSet);
|
return FeatureSet;
|
||||||
|
|
||||||
} /* ExtractMicros */
|
} /* ExtractMicros */
|
||||||
|
Loading…
Reference in New Issue
Block a user