Warning: session_start(): open(/var/lib/php/sessions/sess_2nqsjl2kchaa3ullk7sc5oartl, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
static L regionOutline(BWImage_FastRegions regions, int iRegion) {
new PtBuffer out;
Pt p = regions.samplePixel(iRegion);
int x = p.x, y = p.y;
// move up until we're at the edge of the region
// probably we don't actually need to do this because of the way
// the image was scanned, but we'll do it anyway
while (y > 0 && regions.inRegion(iRegion, x, y-1))
y--;
// found our first outline pixel with background above
out.add(x, y);
ret out;
}