I moved a chunk of the histogram/black point code out of BaseMonochromeBitmapSource...
[zxing.git] / core / src / com / google / zxing / common / CroppedMonochromeBitmapSource.java
index c7d625d..a3adf57 100644 (file)
@@ -95,4 +95,16 @@ public final class CroppedMonochromeBitmapSource implements MonochromeBitmapSour
     return delegate.isRotateSupported();
   }
 
+  public int getLuminance(int x, int y) {
+    return delegate.getLuminance(x, y);
+  }
+
+  public int[] getLuminanceRow(int y, int[] row) {
+    return delegate.getLuminanceRow(y, row);
+  }
+
+  public int[] getLuminanceColumn(int x, int[] column) {
+    return delegate.getLuminanceColumn(x, column);
+  }
+
 }