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 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 Corners() { return this.m_Corners; } public DetectedBoundaryType BoundaryType() { return this.m_BoundaryType; } public boolean AreAllEdgesConfident() { return this.m_AreAllEdgesConfident; } }