Warning: session_start(): open(/var/lib/php/sessions/sess_o7s0iekfvcebu7f47hf0ksjugs, 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
sclass IIBWVirtualClip extends Meta implements IBWIntegralImage {
IBWIntegralImage fullImage;
int x1, y1, w, h;
*() {}
*(IBWIntegralImage *fullImage, int *x1, int *y1, int *w, int *h) {}
public int getWidth() { ret w; }
public int getHeight() { ret h; }
public int getIIValue(int x, int y) {
ret fullImage.getIIValue(x+x1, y+y1);
}
public double getIIValue(double x, double y) {
ret fullImage.getIIValue(x+x1, y+y1);
}
public BufferedImage getBufferedImage() {
ret clipBufferedImage(fullImage.getBufferedImage(), x1, y1, w, h);
}
}