Warning: session_start(): open(/var/lib/php/sessions/sess_r8afhqv1nbml0t3s0c5lavjdjt, 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 Pt brightestPixel(BWImage img) {
int w = img.getWidth(), h = img.getHeight();
new LPair l;
int bestX = -1, bestY = -1, score = -1;
for y to h:
for x to w: {
int val = img.getInt(x, y);
if (val > score) {
bestX = x;
bestY = y;
score = val;
}
ret score >= 0 ? Pt(bestX, bestY) : null;
}