46 lines
1.0 KiB
Java
46 lines
1.0 KiB
Java
|
package com.kofax.android.abc.xvrs;
|
||
|
|
||
|
import android.graphics.Point;
|
||
|
import java.util.Vector;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public class XVrsDocumentLandmark {
|
||
|
protected Vector<Point> m_corners;
|
||
|
protected LandmarkType m_landmark_type;
|
||
|
protected Vector<Point> m_projectedCorners;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public enum LandmarkType {
|
||
|
NOT_FOUND,
|
||
|
MICR,
|
||
|
MRZ,
|
||
|
BARCODE
|
||
|
}
|
||
|
|
||
|
public static native boolean nativeStaticInitializer();
|
||
|
|
||
|
public native void nativeCreate(long j);
|
||
|
|
||
|
static {
|
||
|
if (!nativeStaticInitializer()) {
|
||
|
throw new RuntimeException("com.kofax.android.abc.xvrs.XVrsDocumentLandmark: Static initializer failed.");
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public XVrsDocumentLandmark(long j) {
|
||
|
nativeCreate(j);
|
||
|
}
|
||
|
|
||
|
public Vector<Point> getProjectedCorners() {
|
||
|
return this.m_projectedCorners;
|
||
|
}
|
||
|
|
||
|
public LandmarkType getLandmark() {
|
||
|
return this.m_landmark_type;
|
||
|
}
|
||
|
|
||
|
public Vector<Point> getCorners() {
|
||
|
return this.m_corners;
|
||
|
}
|
||
|
}
|