HologramAuthenticationResult Class

Namespace: id3.Document

Definition

Represents the result of hologram authentication.
class HologramAuthenticationResult
class HologramAuthenticationResult implements Finalizable
public partial class HologramAuthenticationResult
public class HologramAuthenticationResult implements AutoCloseable, Serializable
public class HologramAuthenticationResult
typedef struct id3DocumentHologramAuthenticationResult *ID3_DOCUMENT_HOLOGRAM_AUTHENTICATION_RESULT;

Usage

hologramAuthenticationResultInstance = id3document.HologramAuthenticationResult()

Explicit destruction

# ...
del hologramAuthenticationResultInstance
final hologramAuthenticationResultInstance = sdk.HologramAuthenticationResult();
// ...

Explicit destruction

// ...
hologramAuthenticationResultInstance.dispose()
using (var hologramAuthenticationResultInstance = new HologramAuthenticationResult())
{
   // ...
}

Explicit destruction

var hologramAuthenticationResultInstance = new HologramAuthenticationResult()
// ...
hologramAuthenticationResultInstance.Dispose()
try (HologramAuthenticationResult hologramAuthenticationResultInstance = new HologramAuthenticationResult()) {
// ...
}

Explicit destruction

HologramAuthenticationResult hologramAuthenticationResultInstance = new HologramAuthenticationResult();
// ...
hologramAuthenticationResultInstance.close();
private var hologramAuthenticationResultInstance: HologramAuthenticationResult? = nil
hologramAuthenticationResultInstance = try HologramAuthenticationResult()
ID3_DOCUMENT_HOLOGRAM_AUTHENTICATION_RESULT hHologramAuthenticationResult{};
int err = id3DocumentHologramAuthenticationResult_Initialize(&hHologramAuthenticationResult);
if (err == ID3_SUCCESS) {
    // ...
    id3DocumentHologramAuthenticationResult_Dispose(&hHologramAuthenticationResult);
}

Properties

Name

Type

Description

bounds

Rectangle

Exact bounds of the text in the image.

correlationScore

float

Correlation of the variation to the background.

hologramName

string

Name of the hologram.

variationScore

float

Variation of the OVI color.

Methods

Name

Description

clone

Clones the HologramAuthenticationResult object.