Warning: session_start(): open(/var/lib/php/sessions/sess_3gn886gnnijdl5lg27c0f39m5m, 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
get("#372") -- getContrast
brightnessThreshold = 0.6
-- convert pixel by pixel
w, h = img.width, img.height
pixels = {}
for y = 0, h-1 do
for x = 0, w-1 do
b = bright(rgb(img.getInt(x, y)))
pixels[y*w+x+1] = b >= brightnessThreshold and -1 or 0
end
end