30 lines
651 B
Java
30 lines
651 B
Java
package com.google.zxing;
|
|
|
|
import com.google.zxing.common.BitArray;
|
|
import com.google.zxing.common.BitMatrix;
|
|
|
|
/* loaded from: classes.dex */
|
|
public abstract class Binarizer {
|
|
private final LuminanceSource a;
|
|
|
|
protected Binarizer(LuminanceSource luminanceSource) {
|
|
this.a = luminanceSource;
|
|
}
|
|
|
|
public abstract BitArray a(int i, BitArray bitArray) throws NotFoundException;
|
|
|
|
public abstract BitMatrix a() throws NotFoundException;
|
|
|
|
public final int b() {
|
|
return this.a.a();
|
|
}
|
|
|
|
public final LuminanceSource c() {
|
|
return this.a;
|
|
}
|
|
|
|
public final int d() {
|
|
return this.a.c();
|
|
}
|
|
}
|