#include <wordrec.h>
Definition at line 112 of file wordrec.h.
◆ SegSearchPending()
tesseract::SegSearchPending::SegSearchPending |
( |
| ) |
|
|
inline |
Definition at line 114 of file wordrec.h.
115 : classified_row_(-1),
116 revisit_whole_column_(
false),
117 column_classified_(
false) {}
◆ Clear()
void tesseract::SegSearchPending::Clear |
( |
| ) |
|
|
inline |
Definition at line 138 of file wordrec.h.
139 classified_row_ = -1;
140 revisit_whole_column_ =
false;
141 column_classified_ =
false;
◆ IsRowJustClassified()
bool tesseract::SegSearchPending::IsRowJustClassified |
( |
int |
row | ) |
const |
|
inline |
Definition at line 150 of file wordrec.h.
151 return row == classified_row_ || column_classified_;
◆ RevisitWholeColumn()
void tesseract::SegSearchPending::RevisitWholeColumn |
( |
| ) |
|
|
inline |
Definition at line 133 of file wordrec.h.
134 revisit_whole_column_ =
true;
◆ SetBlobClassified()
void tesseract::SegSearchPending::SetBlobClassified |
( |
int |
row | ) |
|
|
inline |
Definition at line 127 of file wordrec.h.
128 classified_row_ = row;
◆ SetColumnClassified()
void tesseract::SegSearchPending::SetColumnClassified |
( |
| ) |
|
|
inline |
Definition at line 121 of file wordrec.h.
122 column_classified_ =
true;
◆ SingleRow()
int tesseract::SegSearchPending::SingleRow |
( |
| ) |
const |
|
inline |
Definition at line 154 of file wordrec.h.
155 return revisit_whole_column_ || column_classified_ ? -1 : classified_row_;
◆ WorkToDo()
bool tesseract::SegSearchPending::WorkToDo |
( |
| ) |
const |
|
inline |
Definition at line 146 of file wordrec.h.
147 return revisit_whole_column_ || column_classified_ || classified_row_ >= 0;
The documentation for this class was generated from the following file: