resize method
- int maximumCount
Resizes the maximum number of templates that the face indexer can hold.
param maximumCount Maximum number of templates that this face indexer can hold. throws FaceException An error has occurred during Face Library execution.
Implementation
void resize(int maximumCount) {
var err = faceSDK.id3FaceIndexer_Resize(_pHandle.value, maximumCount);
if (err != FaceError.success.value) {
throw FaceException(err);
}
}