what-the-bank/sources/com/kofax/android/abc/machine_vision/DetectedDocumentBoundary.java

41 lines
943 B
Java

package com.kofax.android.abc.machine_vision;
import android.graphics.Point;
import java.util.Vector;
/* loaded from: classes3.dex */
public class DetectedDocumentBoundary {
protected boolean m_AreAllEdgesConfident;
protected double m_Area;
protected DetectedBoundaryType m_BoundaryType;
protected Vector<Point> m_Corners;
protected boolean[] m_IsEdgeConfident;
/* loaded from: classes3.dex */
public enum DetectedBoundaryType {
NOT_FOUND,
PARTIAL_OBJECT,
WHOLE_OBJECT
}
public double area() {
return this.m_Area;
}
public boolean[] IsEdgeConfident() {
return this.m_IsEdgeConfident;
}
public Vector<Point> Corners() {
return this.m_Corners;
}
public DetectedBoundaryType BoundaryType() {
return this.m_BoundaryType;
}
public boolean AreAllEdgesConfident() {
return this.m_AreAllEdgesConfident;
}
}