Lighting estimation is enabled, generating inferred Environmental HDR lighting estimation in
linear color space.
This mode is incompatible with the front-facing (selfie) camera. If set on a Session
created for the front-facing camera, the call to configure will fail.
[[["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\u003eConfig.LightEstimationMode\u003c/code\u003e controls the lighting estimation behavior within ARCore.\u003c/p\u003e\n"],["\u003cp\u003eIt offers three modes: \u003ccode\u003eAMBIENT_INTENSITY\u003c/code\u003e, \u003ccode\u003eDISABLED\u003c/code\u003e, and \u003ccode\u003eENVIRONMENTAL_HDR\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eAMBIENT_INTENSITY\u003c/code\u003e provides single-value intensity and color correction, while \u003ccode\u003eDISABLED\u003c/code\u003e turns off lighting estimation.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eENVIRONMENTAL_HDR\u003c/code\u003e enables advanced HDR lighting estimation but is incompatible with front-facing cameras.\u003c/p\u003e\n"]]],[],null,["# Config.LightEstimationMode\n\n`\npublic static final enum\n`**Config.LightEstimationMode**`\n` \nSelect the behavior of the lighting estimation subsystem. \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`(`[Config.LightEstimationMode](/ar/reference/java/com/google/ar/core/Config.LightEstimationMode)` arg0)` |\n| ` int ` | compareTo`(`[Object](https://developer.android.com/reference/java/lang/Object)` arg0)` |\n| ` final Optional\u003cEnumDesc\u003c`[Config.LightEstimationMode](/ar/reference/java/com/google/ar/core/Config.LightEstimationMode)`\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`[Config.LightEstimationMode](/ar/reference/java/com/google/ar/core/Config.LightEstimationMode)`\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`(`[Config.LightEstimationMode](/ar/reference/java/com/google/ar/core/Config.LightEstimationMode)` arg0)` |\n\nEnum Values\n-----------\n\n#### public\nstatic\nfinal\nConfig.LightEstimationMode\nAMBIENT_INTENSITY\n\n### AMBIENT_INTENSITY\n\n```java\npublic static final Config.LightEstimationMode AMBIENT_INTENSITY\n``` \nLighting estimation is enabled, generating a single-value intensity estimate and three (R, G,\nB) color correction values.\n\n#### public\nstatic\nfinal\nConfig.LightEstimationMode\nDISABLED\n\n### DISABLED\n\n```java\npublic static final Config.LightEstimationMode DISABLED\n``` \nLighting estimation is disabled.\n\n#### public\nstatic\nfinal\nConfig.LightEstimationMode\nENVIRONMENTAL_HDR\n\n### ENVIRONMENTAL_HDR\n\n```java\npublic static final Config.LightEstimationMode ENVIRONMENTAL_HDR\n``` \nLighting estimation is enabled, generating inferred Environmental HDR lighting estimation in\nlinear color space.\n\nThis mode is incompatible with the front-facing (selfie) camera. If set on a Session\ncreated for the front-facing camera, the call to configure will fail."]]