static float[] bwImageRowBrightnesses(BWImage img) { int w = img.getWidth(), h = img.getHeight(); float[] f = new float[h]; for y to h: f[y] = (float) img.clip(0, y, w, 1).averageBrightness(); ret f; }