Stay organized with collectionsSave and categorize content based on your preferences.
public static final enumAugmentedFace.RegionType
Defines face regions to query the pose for. Left and right are defined relative to the person
that the mesh belongs to. To retrieve the center pose useAugmentedFace.getCenterPose().
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-10-31 UTC."],[[["\u003cp\u003e\u003ccode\u003eAugmentedFace.RegionType\u003c/code\u003e defines specific face regions (FOREHEAD_LEFT, FOREHEAD_RIGHT, NOSE_TIP) used to query their poses in AR applications.\u003c/p\u003e\n"],["\u003cp\u003eLeft and right regions are defined from the perspective of the person being tracked, not the viewer.\u003c/p\u003e\n"],["\u003cp\u003eUse \u003ccode\u003eAugmentedFace.getCenterPose()\u003c/code\u003e to retrieve the center pose of the face, as this enum only provides region-specific poses.\u003c/p\u003e\n"],["\u003cp\u003eThis enum inherits standard methods from Java classes like \u003ccode\u003eEnum\u003c/code\u003e, \u003ccode\u003eObject\u003c/code\u003e, \u003ccode\u003eConstable\u003c/code\u003e, and \u003ccode\u003eComparable\u003c/code\u003e, providing basic functionality.\u003c/p\u003e\n"],["\u003cp\u003eEach enum value represents a specific face region with corresponding Java documentation for clarity and usage.\u003c/p\u003e\n"]]],[],null,["# AugmentedFace.RegionType\n\n`\npublic static final enum\n`**AugmentedFace.RegionType**`\n` \nDefines face regions to query the pose for. Left and right are defined relative to the person\nthat the mesh belongs to. To retrieve the center pose use [AugmentedFace.getCenterPose()](/ar/reference/java/com/google/ar/core/AugmentedFace#getCenterPose()). \n\nInherited Methods\n-----------------\n\nFrom `class\njava.lang.Enum` \n\n|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ` final `[Object](https://developer.android.com/reference/java/lang/Object)` ` | clone`()` |\n| ` final int ` | compareTo`(`[AugmentedFace.RegionType](/ar/reference/java/com/google/ar/core/AugmentedFace.RegionType)` arg0)` |\n| ` int ` | compareTo`(`[Object](https://developer.android.com/reference/java/lang/Object)` arg0)` |\n| ` final Optional\u003cEnumDesc\u003c`[AugmentedFace.RegionType](/ar/reference/java/com/google/ar/core/AugmentedFace.RegionType)`\u003e\u003e ` | describeConstable`()` |\n| ` final boolean ` | equals`(`[Object](https://developer.android.com/reference/java/lang/Object)` arg0)` |\n| ` final void ` | finalize`()` |\n| ` final `[Class](https://developer.android.com/reference/java/lang/Class)`\u003c`[AugmentedFace.RegionType](/ar/reference/java/com/google/ar/core/AugmentedFace.RegionType)`\u003e ` | getDeclaringClass`()` |\n| ` final int ` | hashCode`()` |\n| ` final `[String](https://developer.android.com/reference/java/lang/String)` ` | name`()` |\n| ` final int ` | ordinal`()` |\n| ` `[String](https://developer.android.com/reference/java/lang/String)` ` | toString`()` |\n| ` static \u003cT extends `[Enum](https://developer.android.com/reference/java/lang/Enum)`\u003cT\u003e\u003e T ` | valueOf`(`[Class](https://developer.android.com/reference/java/lang/Class)`\u003cT\u003e arg0, `[String](https://developer.android.com/reference/java/lang/String)` arg1)` |\n\nFrom `class\njava.lang.Object` \n\n|---------------------------------------------------------------------------------|-------------------------------------------------------------------------------------|\n| ` `[Object](https://developer.android.com/reference/java/lang/Object)` ` | clone`()` |\n| ` boolean ` | equals`(`[Object](https://developer.android.com/reference/java/lang/Object)` arg0)` |\n| ` void ` | finalize`()` |\n| ` final `[Class](https://developer.android.com/reference/java/lang/Class)`\u003c?\u003e ` | getClass`()` |\n| ` int ` | hashCode`()` |\n| ` final void ` | notify`()` |\n| ` final void ` | notifyAll`()` |\n| ` `[String](https://developer.android.com/reference/java/lang/String)` ` | toString`()` |\n| ` final void ` | wait`(long arg0, int arg1)` |\n| ` final void ` | wait`(long arg0)` |\n| ` final void ` | wait`()` |\n\nFrom `interface\njava.lang.constant.Constable` \n\n|-----------------------------------------------|-----------------------|\n| ` abstract Optional\u003c? extends ConstantDesc\u003e ` | describeConstable`()` |\n\nFrom `interface\njava.lang.Comparable` \n\n|------------------|----------------------------------------------------------------------------------------------------------------|\n| ` abstract int ` | compareTo`(`[AugmentedFace.RegionType](/ar/reference/java/com/google/ar/core/AugmentedFace.RegionType)` arg0)` |\n\nEnum Values\n-----------\n\n#### public\nstatic\nfinal\nAugmentedFace.RegionType\nFOREHEAD_LEFT\n\n### FOREHEAD_LEFT\n\n```java\npublic static final AugmentedFace.RegionType FOREHEAD_LEFT\n``` \nThe region at the detected face's left side of the forehead.\n\n#### public\nstatic\nfinal\nAugmentedFace.RegionType\nFOREHEAD_RIGHT\n\n### FOREHEAD_RIGHT\n\n```java\npublic static final AugmentedFace.RegionType FOREHEAD_RIGHT\n``` \nThe region at the detected face's right side of the forehead.\n\n#### public\nstatic\nfinal\nAugmentedFace.RegionType\nNOSE_TIP\n\n### NOSE_TIP\n\n```java\npublic static final AugmentedFace.RegionType NOSE_TIP\n``` \nThe region at the tip of the nose."]]