what-the-bank/sources/com/kofax/mobile/sdk/_internal/detection/IFaceDetectionResult.java

23 lines
402 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.kofax.mobile.sdk._internal.detection;
import android.graphics.PointF;
/* loaded from: classes3.dex */
public interface IFaceDetectionResult {
float getEulerY();
float getEulerZ();
float getHeight();
float getIsLeftEyeOpenProbability();
float getIsRightEyeOpenProbability();
float getIsSmilingProbability();
PointF getPosition();
float getWidth();
}