| Rect Type Definitions | |
| Rect | The Rect type is a list of Rectangles |
| Variables | |
| next | The next Rect in the list |
| Rect coordinates | |
| fill | Used in some connected components functions. |
| RectPQ | A priority queue of Rectangles used in the maximal white rectangles function. |
| Variables | |
| next | The next element in the queue |
| Rects | |
| quality | The quality of the element. |
The Rect type is a list of Rectangles
| Variables | |
| next | The next Rect in the list |
| Rect coordinates | |
| fill | Used in some connected components functions. |
Used in some connected components functions.
double fill
The quality of the element.
double quality
An implementation of the algorithm described in “T.
Rect *rectMaximalWhiteRectangles( Rect * bound, Rect * obstacles, int N, double (*quality)(Rect *r) )