~vcs-imports/tesseract-ocr/trunk

« back to all changes in this revision

Viewing changes to ccmain/tesseractclass.cpp

  • Committer: theraysmith at gmail
  • Date: 2013-11-08 20:30:56 UTC
  • Revision ID: svn-v4:d0cd1f9f-072b-0410-8dd7-cf729c803f20:trunk:904
Refactorerd control functions to enable parallel blob classification

Show diffs side-by-side

added added

removed removed

Lines of Context:
402
402
                     "for layout analysis.", this->params()),
403
403
    BOOL_MEMBER(textord_equation_detect, false, "Turn on equation detector",
404
404
                this->params()),
 
405
    INT_MEMBER(tessedit_parallelize, 0, "Run in parallel where possible",
 
406
                this->params()),
405
407
 
406
408
    // The following parameters were deprecated and removed from their original
407
409
    // locations. The parameters are temporarily kept here to give Tesseract
528
530
  reskew_ = FCOORD(1.0f, 0.0f);
529
531
  splitter_.Clear();
530
532
  scaled_factor_ = -1;
531
 
  ResetFeaturesHaveBeenExtracted();
532
533
  for (int i = 0; i < sub_langs_.size(); ++i)
533
534
    sub_langs_[i]->Clear();
534
535
}