#include <wordrec.h>
Definition at line 43 of file wordrec.h.
 
  
  
      
        
          | tesseract::SegSearchPending::SegSearchPending  | 
          ( | 
           | ) | 
           | 
         
       
   | 
  
inline   | 
  
 
Definition at line 45 of file wordrec.h.
   46     : classified_row_(-1),
 
   47       revisit_whole_column_(
false),
 
   48       column_classified_(
false) {}
 
 
 
 
  
  
      
        
          | void tesseract::SegSearchPending::Clear  | 
          ( | 
           | ) | 
           | 
         
       
   | 
  
inline   | 
  
 
Definition at line 69 of file wordrec.h.
   71     revisit_whole_column_ = 
false;
 
   72     column_classified_ = 
false;
 
 
 
 
  
  
      
        
          | bool tesseract::SegSearchPending::IsRowJustClassified  | 
          ( | 
          int  | 
          row | ) | 
           const | 
         
       
   | 
  
inline   | 
  
 
Definition at line 81 of file wordrec.h.
   82     return row == classified_row_ || column_classified_;
 
 
 
 
  
  
      
        
          | void tesseract::SegSearchPending::RevisitWholeColumn  | 
          ( | 
           | ) | 
           | 
         
       
   | 
  
inline   | 
  
 
Definition at line 64 of file wordrec.h.
   65     revisit_whole_column_ = 
true;
 
 
 
 
  
  
      
        
          | void tesseract::SegSearchPending::SetBlobClassified  | 
          ( | 
          int  | 
          row | ) | 
           | 
         
       
   | 
  
inline   | 
  
 
Definition at line 58 of file wordrec.h.
   59     classified_row_ = row;
 
 
 
 
  
  
      
        
          | void tesseract::SegSearchPending::SetColumnClassified  | 
          ( | 
           | ) | 
           | 
         
       
   | 
  
inline   | 
  
 
Definition at line 52 of file wordrec.h.
   53     column_classified_ = 
true;
 
 
 
 
  
  
      
        
          | int tesseract::SegSearchPending::SingleRow  | 
          ( | 
           | ) | 
           const | 
         
       
   | 
  
inline   | 
  
 
Definition at line 85 of file wordrec.h.
   86     return revisit_whole_column_ || column_classified_ ? -1 : classified_row_;
 
 
 
 
  
  
      
        
          | bool tesseract::SegSearchPending::WorkToDo  | 
          ( | 
           | ) | 
           const | 
         
       
   | 
  
inline   | 
  
 
Definition at line 77 of file wordrec.h.
   78     return revisit_whole_column_ || column_classified_ || classified_row_ >= 0;
 
 
 
 
The documentation for this class was generated from the following file: