FaceAnalyser.overExposureSensibility Property

Module: FaceAnalyser

Type: int

Definition

Sensibility of the over-exposure classifier, from 0 to 255.

The lower the value, the more sensitive the algorithm will be, meaning that it will be more likely to estimate over-exposed face images.

Hint

Default value is 188.

over_exposure_sensibility: int

Exceptions

An error has occurred during Face Library execution.
int get overExposureSensibility => getOverExposureSensibility();
set overExposureSensibility(int value) => setOverExposureSensibility(value);

Exceptions

An error has occurred during Face Library execution.
public int overExposureSensibility
{
    get => GetoverExposureSensibility();
    set => SetoverExposureSensibility(ref value);
}

Exceptions

An error has occurred during Face Library execution.
public int getOverExposureSensibility() throws FaceException
public void setOverExposureSensibility(int overExposureSensibility) throws FaceException

Exceptions

An error has occurred during Face Library execution.
public var overExposureSensibility: Int
    get {
        return Int(try! getOverExposureSensibility())
    }
}

Exceptions

An error has occurred during Face Library execution.
int id3FaceAnalyser_GetOverExposureSensibility (ID3_FACE_ANALYSER hFaceAnalyser, int * overExposureSensibility)
int id3FaceAnalyser_SetOverExposureSensibility (ID3_FACE_ANALYSER hFaceAnalyser, int overExposureSensibility)

Returns

int
An error code.
See id3FaceError file for the list of possible error codes.