55 lines
1.2 KiB
Java
55 lines
1.2 KiB
Java
package com.kofax.android.abc.machine_vision;
|
|
|
|
import android.graphics.Point;
|
|
import android.graphics.Rect;
|
|
import java.util.Vector;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public class DetectedReferenceFeature {
|
|
protected int m_DPI;
|
|
protected int m_Direction;
|
|
protected DetectedFeatureType m_FeatureType;
|
|
protected Vector<Point> m_ProjectedCorners;
|
|
protected Rect m_Region;
|
|
protected Vector<Vector<Point>> m_TextLineCorners;
|
|
protected Vector<String> m_Values;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public enum DetectedFeatureType {
|
|
NOT_FOUND,
|
|
UNKNOWN,
|
|
PERSONAL_CHECK,
|
|
BUSINESS_CHECK,
|
|
PASSPORT,
|
|
TBD_OTHER_TYPES
|
|
}
|
|
|
|
public Vector<String> Values() {
|
|
return this.m_Values;
|
|
}
|
|
|
|
public Vector<Vector<Point>> TextLineCorners() {
|
|
return this.m_TextLineCorners;
|
|
}
|
|
|
|
public Rect Region() {
|
|
return this.m_Region;
|
|
}
|
|
|
|
public Vector<Point> ProjectedCorners() {
|
|
return this.m_ProjectedCorners;
|
|
}
|
|
|
|
public DetectedFeatureType Featuretype() {
|
|
return this.m_FeatureType;
|
|
}
|
|
|
|
public int Direction() {
|
|
return this.m_Direction;
|
|
}
|
|
|
|
public int DPI() {
|
|
return this.m_DPI;
|
|
}
|
|
}
|