FaceAnalyser.expressionSensibility Property¶
Module: FaceAnalyser
Type: int
Definition¶
Sensibility of the expression classifier.
The higher the value, the more sensitive the algorithm will be, meaning that it will be less likely to estimate neutral expression out of the detected face.
Hint
Default value is 60.
expression_sensibility: int
Exceptions
An error has occurred during Face Library execution.
int get expressionSensibility => getExpressionSensibility();
set expressionSensibility(int value) => setExpressionSensibility(value);
Exceptions
An error has occurred during Face Library execution.
public int expressionSensibility
{
get => GetexpressionSensibility();
set => SetexpressionSensibility(ref value);
}
Exceptions
An error has occurred during Face Library execution.
public int getExpressionSensibility() throws FaceException
public void setExpressionSensibility(int expressionSensibility) throws FaceException
Exceptions
An error has occurred during Face Library execution.
public var expressionSensibility: Int
get {
return Int(try! getExpressionSensibility())
}
}
Exceptions
An error has occurred during Face Library execution.
int id3FaceAnalyser_GetExpressionSensibility (ID3_FACE_ANALYSER hFaceAnalyser, int * expressionSensibility)
int id3FaceAnalyser_SetExpressionSensibility (ID3_FACE_ANALYSER hFaceAnalyser, int expressionSensibility)
Returns