Example #1
0
 public bool AffectivIsActive(EdkDll.EE_AffectivAlgo_t type)
 {
     return(EdkDll.ES_AffectivIsActive(this.hEmoState, type));
 }
Example #2
0
 private static extern bool Unmanaged_ES_AffectivIsActive(IntPtr state, EdkDll.EE_AffectivAlgo_t type);
Example #3
0
 /// <summary>
 /// Query whether the signal is too noisy for Affectiv detection to be active
 /// </summary>
 /// <param name="type">Affectiv detection type</param>
 /// <returns>detection state (false: Not Active, true: Active)</returns>
 public Boolean AffectivIsActive(EdkDll.EE_AffectivAlgo_t type)
 {
     return(EdkDll.ES_AffectivIsActive(hEmoState, type));
 }
Example #4
0
 public static bool ES_AffectivIsActive(IntPtr state, EdkDll.EE_AffectivAlgo_t type)
 {
     return(EdkDll.Unmanaged_ES_AffectivIsActive(state, type));
 }