DetectedFaceList.fromHandle constructor

DetectedFaceList.fromHandle(
  1. Pointer<id3DetectedFaceList> handle
)

Creates a new instance of the DetectedFaceList class.

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

Implementation

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