|
Tesseract
3.02
|
#include <cube_line_object.h>
Public Member Functions | |
| CubeLineObject (CubeRecoContext *cntxt, Pix *pix) | |
| ~CubeLineObject () | |
| int | PhraseCount () |
| CubeObject ** | Phrases () |
Definition at line 32 of file cube_line_object.h.
| tesseract::CubeLineObject::CubeLineObject | ( | CubeRecoContext * | cntxt, |
| Pix * | pix | ||
| ) |
Definition at line 24 of file cube_line_object.cpp.
{
line_pix_ = pix;
own_pix_ = false;
processed_ = false;
cntxt_ = cntxt;
phrase_cnt_ = 0;
phrases_ = NULL;
}
| tesseract::CubeLineObject::~CubeLineObject | ( | ) |
Definition at line 33 of file cube_line_object.cpp.
| int tesseract::CubeLineObject::PhraseCount | ( | ) | [inline] |
Definition at line 38 of file cube_line_object.h.
{
if (!processed_ && !Process()) {
return 0;
}
return phrase_cnt_;
}
| CubeObject** tesseract::CubeLineObject::Phrases | ( | ) | [inline] |
Definition at line 44 of file cube_line_object.h.
{
if (!processed_ && !Process()) {
return NULL;
}
return phrases_;
}