rk
2025-12-23 6ae086d3b199c4aa7cb4d594c9b594530eb5e3f8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * Copyright (C) 2018 Baidu, Inc. All Rights Reserved.
 */
package com.example.datalibrary.callback;
 
 
import com.example.datalibrary.model.LivenessModel;
 
/**
 * 人脸检测回调接口。
 *
 * @Time: 2019/1/25
 * @Author: v_chaixiaogang
 */
public interface FaceDetectCallBack {
    public void onFaceDetectCallback(LivenessModel livenessModel);
 
    public void onTip(int code, String msg);
 
    void onFaceDetectDarwCallback(LivenessModel livenessModel);
}