AugmentedImageDatabaseEntryMode


public final class AugmentedImageDatabaseEntryMode


The mode the augmented image is being detected with

Summary

Public fields

static final @NonNull AugmentedImageDatabaseEntryMode

Mode with the highest accuracy and the lowest latency.

static final @NonNull AugmentedImageDatabaseEntryMode

Mode used to track images that are known to be static or semi-static.

Public methods

final int
@NonNull String

Returns a string representation of AugmentedImageDatabaseEntryMode for debugging.

Public fields

DYNAMIC

public static final @NonNull AugmentedImageDatabaseEntryMode DYNAMIC

Mode with the highest accuracy and the lowest latency. Used for tracking moving images. It has the highest power consumption

STATIC

public static final @NonNull AugmentedImageDatabaseEntryMode STATIC

Mode used to track images that are known to be static or semi-static. It has less power consumption in comparison to dynamic mode. If a static image is moving, it will be updated with a much higher latency

Public methods

getMode

Added in 1.0.0-beta02
public final int getMode()

toString

public @NonNull String toString()

Returns a string representation of AugmentedImageDatabaseEntryMode for debugging.

Note: Not intended for production use.