getOverExposureSensibility method

int getOverExposureSensibility()

Gets 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.

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

Implementation

int getOverExposureSensibility() {
  Pointer<Int> pOverExposureSensibility = calloc();
  try {
    var err = faceSDK.id3FaceAnalyser_GetOverExposureSensibility(_pHandle.value, pOverExposureSensibility);
    if (err != FaceError.success.value) {
      throw FaceException(err);
    }
    final vOverExposureSensibility = pOverExposureSensibility.value;
    return vOverExposureSensibility;
  } finally {
    calloc.free(pOverExposureSensibility);
  }
}