Warning: session_start(): open(/var/lib/php/sessions/sess_gmqrv9u0345d5e2dj6uoohaqo9, 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
// We're mainly testing the "last 7 bits"
svoid testImage2B() {
for (int w = 1; w <= 16; w++) {
print("Testing width " + w);
repeat 100 {
int threshold = random(257);
var img = randomBWImage(w, 1);
var binaryImage = new Image2B(img, threshold);
verifyImage2B(img, binaryImage, threshold);
}
}
}