IS_FacialExpressionIsEyesOpen() 공개 정적인 메소드

public static IS_FacialExpressionIsEyesOpen ( IntPtr state ) : System.Boolean
state System.IntPtr
리턴 System.Boolean
예제 #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));
 }