Make some stuff to public to compile

git-svn-id: https://zxing.googlecode.com/svn/trunk@948 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
srowen 2009-05-22 07:55:32 +00:00
parent 51ade2ca96
commit 7a8635677a

View file

@ -54,14 +54,14 @@ public final class AWTImageMonochromeBitmapSource extends BaseMonochromeBitmapSo
* See <code>com.google.zxing.client.j2me.LCDUIImageMonochromeBitmapSource</code> for more explanation
* of the computation used in this method.
*/
protected int getLuminance(int x, int y) {
public int getLuminance(int x, int y) {
int pixel = pixels[y * getWidth() + x];
return (((pixel & 0x00FF0000) >> 16) +
((pixel & 0x0000FF00) >> 7) +
(pixel & 0x000000FF )) >> 2;
}
protected int[] getLuminanceRow(int y, int[] row) {
public int[] getLuminanceRow(int y, int[] row) {
int width = getWidth();
if (row == null || row.length < width) {
row = new int[width];
@ -76,7 +76,7 @@ public final class AWTImageMonochromeBitmapSource extends BaseMonochromeBitmapSo
return row;
}
protected int[] getLuminanceColumn(int x, int[] column) {
public int[] getLuminanceColumn(int x, int[] column) {
int height = getHeight();
int width = getWidth();
if (column == null || column.length < height) {