Warning: session_start(): open(/var/lib/php/sessions/sess_u4r1ilc538jipf0gffgf2rkje3, 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
// contrast=1 => original
// contrast=2 => twice as contrasty
// contrast=.5 => half as contrasty
static BWImage bwContrast(double contrast, BWImage bw) {
if (contrast == 1 || bw == null) ret bw;
int w = bw.getWidth(), h = bw.getHeight();
float factor = floatRatio(1, max-min);
BWImage bw2 = new BWImage(w, h);
for y to h: for x to w:
bw2.setPixel(x, y, 0.5+(bw.getPixel(x, y)-0.5)*contrast);
ret bw2;
}