Tesseract
3.02
|
Go to the source code of this file.
Functions | |
void | display_blob (TBLOB *blob, C_COL color) |
void | render_blob (void *window, TBLOB *blob, C_COL color) |
void | render_edgepts (void *window, EDGEPT *edgept, C_COL color) |
void | render_outline (void *window, TESSLINE *outline, C_COL color) |
Variables | |
ScrollView * | blob_window = NULL |
C_COL | color_list [] |
bool | wordrec_display_all_blobs = 0 |
bool | wordrec_display_all_words = 0 |
bool | wordrec_blob_pause = 0 |
Definition at line 64 of file render.cpp.
{ /* Size of drawable */ if (blob_window == NULL) { blob_window = c_create_window ("Blobs", 520, 10, 500, 256, -1000.0, 1000.0, 0.0, 256.0); } else { c_clear_window(blob_window); } render_blob(blob_window, blob, color); }
Definition at line 83 of file render.cpp.
{ /* No outline */ if (!blob) return; render_outline (window, blob->outlines, color); }
Definition at line 98 of file render.cpp.
Definition at line 124 of file render.cpp.
{ /* No outline */ if (!outline) return; /* Draw Compact outline */ if (outline->loop) render_edgepts (window, outline->loop, color); /* Add on next outlines */ render_outline (window, outline->next, color); }
ScrollView* blob_window = NULL |
Definition at line 43 of file render.cpp.
bool wordrec_blob_pause = 0 |
"Blob pause"
Definition at line 53 of file render.cpp.
bool wordrec_display_all_blobs = 0 |
"Display Blobs"
Definition at line 49 of file render.cpp.
bool wordrec_display_all_words = 0 |
"Display Words"
Definition at line 51 of file render.cpp.