tesseract  3.03
tesseract::SegSearchPending Class Reference

#include <wordrec.h>

List of all members.

Public Member Functions

 SegSearchPending ()
void SetColumnClassified ()
void SetBlobClassified (int row)
void RevisitWholeColumn ()
void Clear ()
bool WorkToDo () const
bool IsRowJustClassified (int row) const
int SingleRow () const

Detailed Description

Definition at line 43 of file wordrec.h.


Constructor & Destructor Documentation

Definition at line 45 of file wordrec.h.

    : classified_row_(-1),
      revisit_whole_column_(false),
      column_classified_(false) {}

Member Function Documentation

Definition at line 69 of file wordrec.h.

               {
    classified_row_ = -1;
    revisit_whole_column_ = false;
    column_classified_ = false;
  }
bool tesseract::SegSearchPending::IsRowJustClassified ( int  row) const [inline]

Definition at line 81 of file wordrec.h.

                                          {
    return row == classified_row_ || column_classified_;
  }

Definition at line 64 of file wordrec.h.

                            {
    revisit_whole_column_ = true;
  }

Definition at line 58 of file wordrec.h.

                                  {
    classified_row_ = row;
  }

Definition at line 52 of file wordrec.h.

                             {
    column_classified_ = true;
  }

Definition at line 85 of file wordrec.h.

                        {
    return revisit_whole_column_ || column_classified_ ? -1 : classified_row_;
  }
bool tesseract::SegSearchPending::WorkToDo ( ) const [inline]

Definition at line 77 of file wordrec.h.

                        {
    return revisit_whole_column_ || column_classified_ || classified_row_ >= 0;
  }

The documentation for this class was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines