setTemporalWindowSize method

void setTemporalWindowSize(
  1. int temporalWindowSize
)

Sets the size of the FIFO frame buffer, used for processing.

param temporalWindowSize Size of the FIFO frame buffer, used for processing. throws DocumentException An error has occurred during Document Library execution.

Implementation

void setTemporalWindowSize(int temporalWindowSize) {
  var err = documentSDK.id3DocumentAuthenticator_SetTemporalWindowSize(_pHandle.value, temporalWindowSize);
  if (err != DocumentError.success.value) {
    throw DocumentException(err);
  }
}