what-the-bank/sources/com/kofax/android/abc/xvrs/XVrsDocumentBoundary.java

33 lines
764 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.kofax.android.abc.xvrs;
import android.graphics.Point;
import java.util.Vector;
/* loaded from: classes3.dex */
public class XVrsDocumentBoundary {
protected float[] m_confidences;
protected Vector<Point> m_corners;
public static native boolean nativeStaticInitializer();
public native void nativeCreate(long j);
static {
if (!nativeStaticInitializer()) {
throw new RuntimeException("com.kofax.android.abc.xvrs.XVrsDocumentBoundary: Static initializer failed.");
}
}
public XVrsDocumentBoundary(long j) {
nativeCreate(j);
}
public Vector<Point> Corners() {
return this.m_corners;
}
public float[] Confidences() {
return this.m_confidences;
}
}