estimatePhotographicQuality method

void estimatePhotographicQuality(
  1. Portrait portrait
)

Etimates the photographic quality of the specified portrait. It includes image colorization, equal brightness, dynamic range, resolution, natural skin color, flash reflection, noise, over-exposure, under-exposure, pixelation, sharpness.

param portrait The portrait. throws FaceException An error has occurred during Face Library execution.

Implementation

void estimatePhotographicQuality(Portrait portrait) {
  var err = faceSDK.id3FacePortraitProcessor_EstimatePhotographicQuality(_pHandle.value, portrait.handle);
  if (err != FaceError.success.value) {
    throw FaceException(err);
  }
}