authenticateHolograms method

HologramAuthenticationResultList authenticateHolograms()

Authenticates the holograms on the current frame buffer. Important: Buffer must be full to the temporal window size.

return List of result for each hologram enrolled in document. throws DocumentException An error has occurred during Document Library execution.

Implementation

HologramAuthenticationResultList authenticateHolograms() {
  HologramAuthenticationResultList scoreList = HologramAuthenticationResultList();
  var err = documentSDK.id3DocumentAuthenticator_AuthenticateHolograms(_pHandle.value, scoreList.handle);
  if (err != DocumentError.success.value) {
    scoreList.dispose();
    throw DocumentException(err);
  }
  return scoreList;
}