Package com.banuba.sdk.types
Enum FeatureId
- java.lang.Object
-
- java.lang.Enum<FeatureId>
-
- com.banuba.sdk.types.FeatureId
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACNE
ACNE_EYEBAGS
Combined face acne and eyebags removalACTION_UNITS
ACTION_UNITS_ANTIJITTER
Enable latents filtration for AU, affects FRX face meshBACKGROUND
BEAUTY_PREPROC
Neuro beauty preprocessingBODY
Body segmentation.BROWS
EARS
Ears detectionEYE_BAGS
EYES
EYES_CORRECTION
Activates eyes correctorFACE
FACE_ACNE
FACE_ATTRIBUTES
FACE_MATCH
FACE_SKIN
Face skin segmentationFROWN_DETECTION
FRX
GENDER_DETECT
GLASSES
HAIR
HAIR_STRAND
HAND_GESTURES
HAND_SKELET
LIGHT_CORRECTION
Computes coefficient for light correctionLIPS
LIPS_CORRECTION
Activates lips correctorLIPS_SHINE
NAILS
Nails segmentation and recoloringNECK
OCCLUSSION
POSE_ESTIMATION
PULSE
PUPILLARY_DISTANCE
Pupillary distance in mm.RING
RULER
SKIN
TEETH_TONE
TEXTURED_NAILS
WATCH
Watch try-on
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FeatureId
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FeatureId[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FRX
public static final FeatureId FRX
-
PULSE
public static final FeatureId PULSE
-
ACTION_UNITS
public static final FeatureId ACTION_UNITS
-
BACKGROUND
public static final FeatureId BACKGROUND
-
HAIR
public static final FeatureId HAIR
-
EYES
public static final FeatureId EYES
-
BROWS
public static final FeatureId BROWS
-
SKIN
public static final FeatureId SKIN
-
FACE
public static final FeatureId FACE
-
LIPS
public static final FeatureId LIPS
-
LIPS_SHINE
public static final FeatureId LIPS_SHINE
-
OCCLUSSION
public static final FeatureId OCCLUSSION
-
GLASSES
public static final FeatureId GLASSES
-
ACNE
public static final FeatureId ACNE
-
HAND_SKELET
public static final FeatureId HAND_SKELET
-
EYE_BAGS
public static final FeatureId EYE_BAGS
-
FACE_ACNE
public static final FeatureId FACE_ACNE
-
RULER
public static final FeatureId RULER
-
HAIR_STRAND
public static final FeatureId HAIR_STRAND
-
RING
public static final FeatureId RING
-
NECK
public static final FeatureId NECK
-
POSE_ESTIMATION
public static final FeatureId POSE_ESTIMATION
-
BODY
public static final FeatureId BODY
Body segmentation. I.e. bodies detection on the frame.
-
NAILS
public static final FeatureId NAILS
Nails segmentation and recoloring
-
BEAUTY_PREPROC
public static final FeatureId BEAUTY_PREPROC
Neuro beauty preprocessing
-
ACNE_EYEBAGS
public static final FeatureId ACNE_EYEBAGS
Combined face acne and eyebags removal
-
HAND_GESTURES
public static final FeatureId HAND_GESTURES
-
TEXTURED_NAILS
public static final FeatureId TEXTURED_NAILS
-
EYES_CORRECTION
public static final FeatureId EYES_CORRECTION
Activates eyes corrector
-
LIPS_CORRECTION
public static final FeatureId LIPS_CORRECTION
Activates lips corrector
-
LIGHT_CORRECTION
public static final FeatureId LIGHT_CORRECTION
Computes coefficient for light correction
-
WATCH
public static final FeatureId WATCH
Watch try-on
-
FACE_MATCH
public static final FeatureId FACE_MATCH
-
EARS
public static final FeatureId EARS
Ears detection
-
ACTION_UNITS_ANTIJITTER
public static final FeatureId ACTION_UNITS_ANTIJITTER
Enable latents filtration for AU, affects FRX face mesh
-
FACE_SKIN
public static final FeatureId FACE_SKIN
Face skin segmentation
-
FACE_ATTRIBUTES
public static final FeatureId FACE_ATTRIBUTES
-
PUPILLARY_DISTANCE
public static final FeatureId PUPILLARY_DISTANCE
Pupillary distance in mm.
-
FROWN_DETECTION
public static final FeatureId FROWN_DETECTION
-
GENDER_DETECT
public static final FeatureId GENDER_DETECT
-
TEETH_TONE
public static final FeatureId TEETH_TONE
-
-
Method Detail
-
values
public static FeatureId[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FeatureId c : FeatureId.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FeatureId valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-