FaceCandidate.fromHandle constructor

FaceCandidate.fromHandle(
  1. Pointer<id3FaceCandidate> handle
)

Creates a new instance of the FaceCandidate class.

param handle Handle to the FaceCandidate. throws FaceException An error has occurred during Face Library execution.

Implementation

FaceCandidate.fromHandle(Pointer<id3FaceCandidate> handle) {
  _pHandle = calloc();
  _pHandle.value = handle;
  _disposable = false;
}