Fixed slow-down that was caused by upping MAX_NUM_CLASSES

git-svn-id: https://tesseract-ocr.googlecode.com/svn/trunk@1014 d0cd1f9f-072b-0410-8dd7-cf729c803f20
This commit is contained in:
theraysmith@gmail.com 2014-01-24 21:17:43 +00:00
parent 1a487252f4
commit aa62157687

View File

@ -140,7 +140,7 @@ BLOB_CHOICE_LIST *Wordrec::call_matcher(TBLOB *tessblob) {
rotated_blob = tessblob;
}
BLOB_CHOICE_LIST *ratings = new BLOB_CHOICE_LIST(); // matcher result
AdaptiveClassifier(rotated_blob, ratings, NULL);
AdaptiveClassifier(rotated_blob, ratings);
if (rotated_blob != tessblob) {
delete rotated_blob;
}