33 lines
764 B
Java
33 lines
764 B
Java
|
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;
|
||
|
}
|
||
|
}
|