Oops one more style change

git-svn-id: https://zxing.googlecode.com/svn/trunk@421 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
srowen 2008-06-12 12:52:18 +00:00
parent 31b8b3d226
commit 038add9da1

View file

@ -24,14 +24,14 @@ import com.google.zxing.ReaderException;
*/
public abstract class BaseMonochromeBitmapSource implements MonochromeBitmapSource {
private int blackPoint;
private BlackPointEstimationMethod lastMethod;
private int lastArgument;
private static final int LUMINANCE_BITS = 5;
private static final int LUMINANCE_SHIFT = 8 - LUMINANCE_BITS;
private static final int LUMINANCE_BUCKETS = 1 << LUMINANCE_BITS;
private int blackPoint;
private BlackPointEstimationMethod lastMethod;
private int lastArgument;
protected BaseMonochromeBitmapSource() {
blackPoint = 0x7F;
lastMethod = null;
@ -53,7 +53,7 @@ public abstract class BaseMonochromeBitmapSource implements MonochromeBitmapSour
// decode a 1D barcode, and apply some sharpening.
// TODO: We may want to add a fifth parameter to request the amount of shapening to be done.
cacheRowForLuminance(y);
if (lastMethod == BlackPointEstimationMethod.ROW_SAMPLING) {
if (lastMethod.equals(BlackPointEstimationMethod.ROW_SAMPLING)) {
int left = getLuminance(startX, y);
int center = getLuminance(startX + 1, y);
for (int x = 1; x < getWidth - 1; x++) {
@ -119,5 +119,4 @@ public abstract class BaseMonochromeBitmapSource implements MonochromeBitmapSour
return false;
}
}