Exemple #1
0
 public void onProcessingException(AffdexException ex)
 {
     OnFailure?.Invoke(this, new DetectAdapterEventAgrs(ex));
 }
Exemple #2
0
 /// <summary>
 /// Handles occurence of exception produced by Affdex.Detector
 /// </summary>
 /// <param name="ex">The <see cref="Affdex.AffdexException"/> instance containing the exception details.</param>
 public void onProcessingException(AffdexException ex)
 {
 }
 void ProcessStatusListener.onProcessingException(AffdexException ex)
 {
     ShowMessage(ex.Message);
     WriteInfo(ex.Message);
 }
Exemple #4
0
 /// <summary>
 /// This is where the Processor listener returns information for post processing excetions
 /// </summary>
 /// <param name="ex"></param>
 public void onProcessingException(AffdexException ex)
 {
     throw new NotImplementedException();
 }
Exemple #5
0
 public ProcessingExceptionEventArgs(int cameraId, AffdexException exception) : base(cameraId)
 {
     this.Exception = exception;
 }
Exemple #6
0
 public void onProcessingException(AffdexException ex) =>
 OnProcessingException?.Invoke(this, new ProcessingExceptionEventArgs(_cameraId, ex));