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 |
---|---|---|
Exact bounds of the text in the image. |
||
float |
Correlation of the variation to the background. |
|
string |
Name of the hologram. |
|
float |
Variation of the OVI color. |
Methods¶
Name |
Description |
---|---|
Clones the HologramAuthenticationResult object. |