Emotiv.EdkDll.IS_FacialExpressionEqual C# (CSharp) Method

IS_FacialExpressionEqual() public static method

public static IS_FacialExpressionEqual ( IntPtr a, IntPtr b ) : System.Boolean
a System.IntPtr
b System.IntPtr
return System.Boolean
        public static Boolean IS_FacialExpressionEqual(IntPtr a, IntPtr b)
        {
            return Unmanaged_IS_FacialExpressionEqual(a, b);
        }

Usage Example

コード例 #1
0
 /// <summary>
 /// Check whether two states are with identical Expressiv state, i.e. are both state representing the same facial expression
 /// </summary>
 /// <param name="state">EmoState</param>
 /// <returns>true: Equal, false: Different</returns>
 public Boolean FacialExpressionEqual(EmoState state)
 {
     return(EdkDll.IS_FacialExpressionEqual(GetHandle(), state.GetHandle()));
 }
EdkDll