Warning: session_start(): open(/var/lib/php/sessions/sess_n14qt8nbkrjkgesmf9l5hocaoi, 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 double iiSumRect(double[][] ii, Rect r) {
double bottomLeft = ii[r.y2()-1][r.x-1];
double bottomRight = ii[r.y2()-1][r.x2()-1];
double topLeft = ii[r.y-1][r.x-1];
double topRight = ii[r.y-1][r.x2()-1];
double lShape = bottomRight-topLeft;
double topRightSegment = topRight-topLeft;
double bottomLeftSegment = bottomLeft-topLeft;
ret -(lShape-topRightSegment-bottomLeftSegment);
}