package com.kofax.android.abc.machine_vision; import android.graphics.Point; import android.graphics.Rect; import java.util.Vector; /* loaded from: classes3.dex */ public class DetectedReferenceFeature { protected int m_DPI; protected int m_Direction; protected DetectedFeatureType m_FeatureType; protected Vector m_ProjectedCorners; protected Rect m_Region; protected Vector> m_TextLineCorners; protected Vector m_Values; /* loaded from: classes3.dex */ public enum DetectedFeatureType { NOT_FOUND, UNKNOWN, PERSONAL_CHECK, BUSINESS_CHECK, PASSPORT, TBD_OTHER_TYPES } public Vector Values() { return this.m_Values; } public Vector> TextLineCorners() { return this.m_TextLineCorners; } public Rect Region() { return this.m_Region; } public Vector ProjectedCorners() { return this.m_ProjectedCorners; } public DetectedFeatureType Featuretype() { return this.m_FeatureType; } public int Direction() { return this.m_Direction; } public int DPI() { return this.m_DPI; } }