Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove unsupported attribute
  • Loading branch information
Han-msft committed Oct 9, 2024
commit f0cc52f4542a43db3274c793d04585b78b37c9c3
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,6 @@ public partial struct Detection01
public static Azure.AI.Vision.Face.FaceAttributeType Exposure { get { throw null; } }
public static Azure.AI.Vision.Face.FaceAttributeType Glasses { get { throw null; } }
public static Azure.AI.Vision.Face.FaceAttributeType HeadPose { get { throw null; } }
public static Azure.AI.Vision.Face.FaceAttributeType Mask { get { throw null; } }
public static Azure.AI.Vision.Face.FaceAttributeType Noise { get { throw null; } }
public static Azure.AI.Vision.Face.FaceAttributeType Occlusion { get { throw null; } }
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ public struct Detection01 {
public static FaceAttributeType Exposure { get; } = FaceAttributeType.Exposure;
/// <summary> Noise level of face pixels. Level returns 'Low', 'Medium' and 'High'. Value returns a number between [0,1], the larger the noisier. </summary>
public static FaceAttributeType Noise { get; } = FaceAttributeType.Noise;
/// <summary> Whether each face is wearing a mask. Mask type returns 'noMask', 'faceMask', 'otherMaskOrOcclusion', or 'uncertain'. Value returns a boolean 'noseAndMouthCovered' indicating whether nose and mouth are covered. </summary>
public static FaceAttributeType Mask { get; } = FaceAttributeType.Mask;
}

/// <summary> Available attributes for detection03 model. </summary>
Expand Down