Warning: session_start(): open(/var/lib/php/sessions/sess_l7t1qtdpmpt1kr0ileancuaq6q, 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 BWImage bwImageTo2Bit(BWImage img, float threshold) {
int w = img.w(), h = img.h();
BWImage img2 = new BWImage(w, h);
for y to h: for x to w:
img2.setPixel(x, y, img.getPixel(x, y) >= threshold ? 1f : 0f);
ret img2;
}