Emotiv.EdkDll.IS_FacialExpressionGetLowerFaceActionPower C# (CSharp) Method

IS_FacialExpressionGetLowerFaceActionPower() public static method

public static IS_FacialExpressionGetLowerFaceActionPower ( IntPtr state ) : System.Single
state System.IntPtr
return System.Single
        public static Single IS_FacialExpressionGetLowerFaceActionPower(IntPtr state)
        {
            return Unmanaged_IS_FacialExpressionGetLowerFaceActionPower(state);
        }

Usage Example

Example #1
0
 /// <summary>
 /// Returns the detected lower face Expressiv action power of the user
 /// </summary>
 /// <returns>power value (0.0 to 1.0)</returns>
 public Single FacialExpressionGetLowerFaceActionPower()
 {
     return(EdkDll.IS_FacialExpressionGetLowerFaceActionPower(hEmoState));
 }
EdkDll