14 lines
431 B
Java
14 lines
431 B
Java
package Camera;
|
|
|
|
public interface LiveCamEvent {
|
|
void onDetectedQRCode(String qrCode);
|
|
void onFrontalFaceDetector(boolean hasface, int width, int height);
|
|
void onProfileFaceDetector(boolean hasface, int width, int height);
|
|
void onEyeDetector(boolean hasEye);
|
|
void onLog(String log);
|
|
void onBlink(int counter);
|
|
void onDoubleBlink(int counter);
|
|
void onStartCapturing();
|
|
void onIntervalUpdate();
|
|
}
|