Recomputes the bounding boxes of the outlines.
| 460 | |
| 461 | // Recomputes the bounding boxes of the outlines. |
| 462 | void TBLOB::ComputeBoundingBoxes() { |
| 463 | for (TESSLINE* outline = outlines; outline != NULL; outline = outline->next) { |
| 464 | outline->ComputeBoundingBox(); |
| 465 | } |
| 466 | } |
| 467 | |
| 468 | // Returns the number of outlines. |
| 469 | int TBLOB::NumOutlines() const { |
no test coverage detected