Blur Constructors

Definition

Overloads

Blur()

Initializes a new instance of the Blur class.

Blur(BlurLevel, Double)

Initializes a new instance of the Blur class.

Blur()

Source:
Blur.cs

Initializes a new instance of the Blur class.

public Blur ();
Public Sub New ()

Applies to

Blur(BlurLevel, Double)

Source:
Blur.cs

Initializes a new instance of the Blur class.

public Blur (Microsoft.Azure.CognitiveServices.Vision.Face.Models.BlurLevel blurLevel = Microsoft.Azure.CognitiveServices.Vision.Face.Models.BlurLevel.Low, double value = 0);
new Microsoft.Azure.CognitiveServices.Vision.Face.Models.Blur : Microsoft.Azure.CognitiveServices.Vision.Face.Models.BlurLevel * double -> Microsoft.Azure.CognitiveServices.Vision.Face.Models.Blur
Public Sub New (Optional blurLevel As BlurLevel = Microsoft.Azure.CognitiveServices.Vision.Face.Models.BlurLevel.Low, Optional value As Double = 0)

Parameters

blurLevel
BlurLevel

An enum value indicating level of blurriness. Possible values include: 'Low', 'Medium', 'High'

value
Double

A number indicating level of blurriness ranging from 0 to 1.

Applies to