public enum TrackingStatus extends java.lang.Enum<TrackingStatus>
| Enum Constant and Description |
|---|
CONFIRMED
The face was detected and tracked for the required number of consecutive frames, hence the track is confirmed.
|
DELETED
The face was missed for too many frames, the track is over.
|
INITIALIZED
A face was detected and a track is initialized.
|
NONE
No status.
|
TEMPORARY_LOST
The face was missed for at least one frame.
|
| Modifier and Type | Method and Description |
|---|---|
static TrackingStatus |
fromValue(int value)
Creates an enumeration value from int.
|
int |
getValue()
Gets the enumeration value as int.
|
static TrackingStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TrackingStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TrackingStatus NONE
public static final TrackingStatus INITIALIZED
public static final TrackingStatus CONFIRMED
public static final TrackingStatus TEMPORARY_LOST
public static final TrackingStatus DELETED
public static TrackingStatus[] values()
for (TrackingStatus c : TrackingStatus.values()) System.out.println(c);
public static TrackingStatus valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic int getValue()
public static TrackingStatus fromValue(int value)
value - The int value.Copyright © id3 Technologies. All rights reserved. eu.id3.face