PortraitProcessor.underExposureThreshold Property¶
Module: PortraitProcessor
Type: int
Definition¶
Under exposure threshold.
Above this threshold, the face is probably under-exposed.
Hint
Default value is 50.
under_exposure_threshold: int
Exceptions
An error has occurred during Face Library execution.
int get underExposureThreshold => getUnderExposureThreshold();
set underExposureThreshold(int value) => setUnderExposureThreshold(value);
Exceptions
An error has occurred during Face Library execution.
public int underExposureThreshold
{
get => GetunderExposureThreshold();
set => SetunderExposureThreshold(ref value);
}
Exceptions
An error has occurred during Face Library execution.
public int getUnderExposureThreshold() throws FaceException
public void setUnderExposureThreshold(int underExposureThreshold) throws FaceException
Exceptions
An error has occurred during Face Library execution.
public var underExposureThreshold: Int
get {
return Int(try! getUnderExposureThreshold())
}
}
Exceptions
An error has occurred during Face Library execution.
int id3FacePortraitProcessor_GetUnderExposureThreshold (ID3_FACE_PORTRAIT_PROCESSOR hPortraitProcessor, int * underExposureThreshold)
int id3FacePortraitProcessor_SetUnderExposureThreshold (ID3_FACE_PORTRAIT_PROCESSOR hPortraitProcessor, int underExposureThreshold)
Returns