clear method

void clear()

Clears the FaceCandidateList object.

throws FaceException An error has occurred during Face Library execution.

Implementation

void clear() {
  var err = faceSDK.id3FaceCandidateList_Clear(_pHandle.value);
  if (err != FaceError.success.value) {
    throw FaceException(err);
  }
}