All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
render.h File Reference
#include "host.h"
#include "callcpp.h"
#include "blobs.h"

Go to the source code of this file.

Macros

#define NUM_COLORS   6
 

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

ScrollViewblob_window
 
C_COL color_list []
 
bool wordrec_display_all_blobs = 0
 
bool wordrec_display_all_words = 0
 
bool wordrec_blob_pause = 0
 

Macro Definition Documentation

#define NUM_COLORS   6

Definition at line 44 of file render.h.

Function Documentation

void display_blob ( TBLOB blob,
C_COL  color 
)

Definition at line 64 of file render.cpp.

64  {
65  /* Size of drawable */
66  if (blob_window == NULL) {
67  blob_window = c_create_window ("Blobs", 520, 10,
68  500, 256, -1000.0, 1000.0, 0.0, 256.0);
69  }
70  else {
72  }
73 
74  render_blob(blob_window, blob, color);
75 }
void render_blob(void *window, TBLOB *blob, C_COL color)
Definition: render.cpp:83
ScrollView * c_create_window(const char *name, inT16 xpos, inT16 ypos, inT16 xsize, inT16 ysize, double xmin, double xmax, double ymin, double ymax)
Definition: callcpp.cpp:55
ScrollView * blob_window
Definition: render.cpp:43
void c_clear_window(void *win)
Definition: callcpp.cpp:104
#define NULL
Definition: host.h:144
void render_blob ( void *  window,
TBLOB blob,
C_COL  color 
)

Definition at line 83 of file render.cpp.

83  {
84  /* No outline */
85  if (!blob)
86  return;
87 
88  render_outline (window, blob->outlines, color);
89 }
void render_outline(void *window, TESSLINE *outline, C_COL color)
Definition: render.cpp:124
TESSLINE * outlines
Definition: blobs.h:377
void render_edgepts ( void *  window,
EDGEPT edgept,
C_COL  color 
)

Definition at line 98 of file render.cpp.

98  {
99  if (!edgept)
100  return;
101 
102  float x = edgept->pos.x;
103  float y = edgept->pos.y;
104  EDGEPT *this_edge = edgept;
105 
106  c_line_color_index(window, color);
107  c_move(window, x, y);
108  do {
109  this_edge = this_edge->next;
110  x = this_edge->pos.x;
111  y = this_edge->pos.y;
112  c_draw(window, x, y);
113  }
114  while (edgept != this_edge);
115 }
void c_line_color_index(void *win, C_COL index)
Definition: callcpp.cpp:70
inT16 y
Definition: blobs.h:72
EDGEPT * next
Definition: blobs.h:169
inT16 x
Definition: blobs.h:71
void c_draw(void *win, double x, double y)
Definition: callcpp.cpp:88
TPOINT pos
Definition: blobs.h:163
Definition: blobs.h:76
void c_move(void *win, double x, double y)
Definition: callcpp.cpp:79
void render_outline ( void *  window,
TESSLINE outline,
C_COL  color 
)

Definition at line 124 of file render.cpp.

126  {
127  /* No outline */
128  if (!outline)
129  return;
130  /* Draw Compact outline */
131  if (outline->loop)
132  render_edgepts (window, outline->loop, color);
133  /* Add on next outlines */
134  render_outline (window, outline->next, color);
135 }
void render_edgepts(void *window, EDGEPT *edgept, C_COL color)
Definition: render.cpp:98
TESSLINE * next
Definition: blobs.h:258
void render_outline(void *window, TESSLINE *outline, C_COL color)
Definition: render.cpp:124
EDGEPT * loop
Definition: blobs.h:257

Variable Documentation

ScrollView* blob_window

Definition at line 43 of file render.cpp.

C_COL color_list[]

Definition at line 45 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.