|
tesseract
3.03
|
#include <blobs.h>
Public Member Functions | |
| EDGEPT () | |
| EDGEPT (const EDGEPT &src) | |
| EDGEPT & | operator= (const EDGEPT &src) |
| void | CopyFrom (const EDGEPT &src) |
| void | Hide () |
| void | Reveal () |
| bool | IsHidden () const |
| void | MarkChop () |
| void | UnmarkChop () |
| bool | IsChopPt () const |
Public Attributes | |
| TPOINT | pos |
| VECTOR | vec |
| char | flags [EDGEPTFLAGS] |
| EDGEPT * | next |
| EDGEPT * | prev |
| C_OUTLINE * | src_outline |
| int | start_step |
| int | step_count |
| EDGEPT::EDGEPT | ( | ) | [inline] |
Definition at line 70 of file blobs.h.
: next(NULL), prev(NULL), src_outline(NULL), start_step(0), step_count(0) { memset(flags, 0, EDGEPTFLAGS * sizeof(flags[0])); }
| EDGEPT::EDGEPT | ( | const EDGEPT & | src | ) | [inline] |
| void EDGEPT::CopyFrom | ( | const EDGEPT & | src | ) | [inline] |
Definition at line 82 of file blobs.h.
{
pos = src.pos;
vec = src.vec;
memcpy(flags, src.flags, EDGEPTFLAGS * sizeof(flags[0]));
src_outline = src.src_outline;
start_step = src.start_step;
step_count = src.step_count;
}
| void EDGEPT::Hide | ( | ) | [inline] |
| bool EDGEPT::IsChopPt | ( | ) | const [inline] |
| bool EDGEPT::IsHidden | ( | ) | const [inline] |
| void EDGEPT::MarkChop | ( | ) | [inline] |
| void EDGEPT::Reveal | ( | ) | [inline] |
| void EDGEPT::UnmarkChop | ( | ) | [inline] |
| char EDGEPT::flags[EDGEPTFLAGS] |