setOverExposureSensibility method

void setOverExposureSensibility(
  1. int overExposureSensibility
)

Sets the 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.

param overExposureSensibility Sensibility of the over-exposure classifier, from 0 to 255. throws FaceException An error has occurred during Face Library execution.

Implementation

void setOverExposureSensibility(int overExposureSensibility) {
  var err = faceSDK.id3FaceAnalyser_SetOverExposureSensibility(_pHandle.value, overExposureSensibility);
  if (err != FaceError.success.value) {
    throw FaceException(err);
  }
}