Emotiv.EdkDll.IS_FacialExpressionIsLookingRight C# (CSharp) Method

IS_FacialExpressionIsLookingRight() public static method

public static IS_FacialExpressionIsLookingRight ( IntPtr state ) : Int32
state System.IntPtr
return System.Int32
        public static Int32 IS_FacialExpressionIsLookingRight(IntPtr state)
        {
            return Unmanaged_IS_FacialExpressionIsLookingRight(state);
        }

Usage Example

Example #1
0
 /// <summary>
 /// Query whether the user is looking right at the time the EmoState is captured with EPOC/EPOC+ headset.
 /// </summary>
 /// <returns>return eye position (1: looking right, 0: not looking right)</returns>
 public Int32 FacialExpressionIsLookingRight()
 {
     return(EdkDll.IS_FacialExpressionIsLookingRight(hEmoState));
 }
EdkDll