MCPcopy Create free account
hub / github.com/creatale/node-dv / Print

Method Print

deps/tesseract/ccstruct/seam.cpp:160–169  ·  view source on GitHub ↗

Prints everything in *this SEAM.

Source from the content-addressed store, hash-verified

158
159// Prints everything in *this SEAM.
160void SEAM::Print(const char* label) const {
161 tprintf(label);
162 tprintf(" %6.2f @ (%d,%d), p=%d, n=%d ", priority_, location_.x, location_.y,
163 widthp_, widthn_);
164 for (int s = 0; s < num_splits_; ++s) {
165 splits_[s].Print();
166 if (s + 1 < num_splits_) tprintf(", ");
167 }
168 tprintf("\n");
169}
170
171// Prints a collection of SEAMs.
172/* static */

Callers 3

init_tesseractMethod · 0.45
PrintSeamsMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected