Emotiv.EdkDll.IS_FacialExpressionGetUpperFaceActionPower C# (CSharp) Method

IS_FacialExpressionGetUpperFaceActionPower() public static method

public static IS_FacialExpressionGetUpperFaceActionPower ( IntPtr state ) : System.Single
state System.IntPtr
return System.Single
        public static Single IS_FacialExpressionGetUpperFaceActionPower(IntPtr state)
        {
            return Unmanaged_IS_FacialExpressionGetUpperFaceActionPower(state);
        }

Usage Example

示例#1
0
 /// <summary>
 /// Returns the detected upper face Expressiv action power of the user
 /// </summary>
 /// <returns>power value (0.0 to 1.0)</returns>
 public Single FacialExpressionGetUpperFaceActionPower()
 {
     return(EdkDll.IS_FacialExpressionGetUpperFaceActionPower(hEmoState));
 }
EdkDll