43 lines
872 B
Java
43 lines
872 B
Java
package com.kofax.kmc.ken.engines.ocr;
|
|
|
|
import com.google.android.gms.auth.api.credentials.CredentialsApi;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public class OcrParameters {
|
|
int hI = CredentialsApi.CREDENTIAL_PICKER_REQUEST_CODE;
|
|
private Font hJ = Font.DEFAULT;
|
|
private OcrRegion hK;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public enum Font {
|
|
DEFAULT,
|
|
GENERIC_MACHINE_PRINT,
|
|
FARRINGTON_CREDIT_CARD,
|
|
E13B_MICR
|
|
}
|
|
|
|
public void setRegion(OcrRegion ocrRegion) {
|
|
this.hK = ocrRegion;
|
|
}
|
|
|
|
public void setOcrBufferSize(int i) {
|
|
this.hI = i;
|
|
}
|
|
|
|
public void setFont(Font font) {
|
|
this.hJ = font;
|
|
}
|
|
|
|
public OcrRegion getRegion() {
|
|
return this.hK;
|
|
}
|
|
|
|
public int getOcrBufferSize() {
|
|
return this.hI;
|
|
}
|
|
|
|
public Font getFont() {
|
|
return this.hJ;
|
|
}
|
|
}
|