Warning: session_start(): open(/var/lib/php/sessions/sess_otmnaj9j61s9r47kb1bh6e3brc, 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 IIHorizontalSplit extends Meta implements IIntegralImage {
int w, h;
int[] color;
*() {}
*(int *w, int *h, int[] *color) {}
public int getWidth() { ret w; }
public int getHeight() { ret h; }
public double getIntegralValue(int x, int y, int channel) {
ret (x+1)*(y+1)*color[channel];
}
public BufferedImage getBufferedImage() {
ret newBufferedImage(getWidth(), getHeight(), toColor(color));
}
}