Emotiv.EdkDll.IS_FacialExpressionIsBlink C# (CSharp) Method

IS_FacialExpressionIsBlink() public static method

public static IS_FacialExpressionIsBlink ( IntPtr state ) : System.Boolean
state System.IntPtr
return System.Boolean
        public static Boolean IS_FacialExpressionIsBlink(IntPtr state)
        {
            return Unmanaged_IS_FacialExpressionIsBlink(state);
        }

Usage Example

Example #1
0
 /// <summary>
 /// Query whether the user is blinking at the time the EmoState is captured.
 /// </summary>
 /// <returns>blink status (true: blink, false: not blink)</returns>
 public Boolean FacialExpressionIsBlink()
 {
     return(EdkDll.IS_FacialExpressionIsBlink(hEmoState));
 }
EdkDll