Emotiv.EdkDll.IS_FacialExpressionIsEyesOpen C# (CSharp) Method

IS_FacialExpressionIsEyesOpen() public static method

public static IS_FacialExpressionIsEyesOpen ( IntPtr state ) : System.Boolean
state System.IntPtr
return System.Boolean
        public static Boolean IS_FacialExpressionIsEyesOpen(IntPtr state)
        {
            return Unmanaged_IS_FacialExpressionIsEyesOpen(state);
        }

Usage Example

Exemplo n.º 1
0
 /// <summary>
 /// Query whether the eyes of the user are opened at the time the EmoState is captured.
 /// </summary>
 /// <returns>eye open status (true: eyes open, false: eyes closed)</returns>
 public Boolean FacialExpressionIsEyesOpen()
 {
     return(EdkDll.IS_FacialExpressionIsEyesOpen(hEmoState));
 }
EdkDll