Exposure Constructors

Definition

Overloads

Exposure()

Initializes a new instance of the Exposure class.

Exposure(ExposureLevel, Double)

Initializes a new instance of the Exposure class.

Exposure()

Source:
Exposure.cs

Initializes a new instance of the Exposure class.

public Exposure ();
Public Sub New ()

Applies to

Exposure(ExposureLevel, Double)

Source:
Exposure.cs

Initializes a new instance of the Exposure class.

public Exposure (Microsoft.Azure.CognitiveServices.Vision.Face.Models.ExposureLevel exposureLevel = Microsoft.Azure.CognitiveServices.Vision.Face.Models.ExposureLevel.UnderExposure, double value = 0);
new Microsoft.Azure.CognitiveServices.Vision.Face.Models.Exposure : Microsoft.Azure.CognitiveServices.Vision.Face.Models.ExposureLevel * double -> Microsoft.Azure.CognitiveServices.Vision.Face.Models.Exposure
Public Sub New (Optional exposureLevel As ExposureLevel = Microsoft.Azure.CognitiveServices.Vision.Face.Models.ExposureLevel.UnderExposure, Optional value As Double = 0)

Parameters

exposureLevel
ExposureLevel

An enum value indicating level of exposure. Possible values include: 'UnderExposure', 'GoodExposure', 'OverExposure'

value
Double

A number indicating level of exposure level ranging from 0 to 1. [0, 0.25) is under exposure. [0.25, 0.75) is good exposure. [0.75, 1] is over exposure.

Applies to