FaceAnalyser.fromHandle constructor

FaceAnalyser.fromHandle(
  1. Pointer<id3FaceAnalyser> handle
)

Creates a new instance of the FaceAnalyser class.

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

Implementation

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