FaceDetectionEffect.FaceDetected Ereignis

Definition

Tritt auf, wenn ein Gesicht erkannt wird. Weitere Informationen finden Sie unter FaceDetectedEventArgs.

// Register
event_token FaceDetected(TypedEventHandler<FaceDetectionEffect, FaceDetectedEventArgs const&> const& handler) const;

// Revoke with event_token
void FaceDetected(event_token const* cookie) const;

// Revoke with event_revoker
FaceDetectionEffect::FaceDetected_revoker FaceDetected(auto_revoke_t, TypedEventHandler<FaceDetectionEffect, FaceDetectedEventArgs const&> const& handler) const;
public event TypedEventHandler<FaceDetectionEffect,FaceDetectedEventArgs> FaceDetected;
function onFaceDetected(eventArgs) { /* Your code */ }
faceDetectionEffect.addEventListener("facedetected", onFaceDetected);
faceDetectionEffect.removeEventListener("facedetected", onFaceDetected);
- or -
faceDetectionEffect.onfacedetected = onFaceDetected;
Public Custom Event FaceDetected As TypedEventHandler(Of FaceDetectionEffect, FaceDetectedEventArgs) 

Ereignistyp

Gilt für: