Class: Aws::Rekognition::Types::FaceOccluded
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::FaceOccluded
- Defined in:
- gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb
Overview
FaceOccluded
should return "true" with a high confidence score if
a detected face’s eyes, nose, and mouth are partially captured or if
they are covered by masks, dark sunglasses, cell phones, hands, or
other objects. FaceOccluded
should return "false" with a high
confidence score if common occurrences that do not impact face
verification are detected, such as eye glasses, lightly tinted
sunglasses, strands of hair, and others.
You can use FaceOccluded
to determine if an obstruction on a face
negatively impacts using the image for face matching.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#confidence ⇒ Float
The confidence that the service has detected the presence of a face occlusion.
-
#value ⇒ Boolean
True if a detected face’s eyes, nose, and mouth are partially captured or if they are covered by masks, dark sunglasses, cell phones, hands, or other objects.
Instance Attribute Details
#confidence ⇒ Float
The confidence that the service has detected the presence of a face occlusion.
3050 3051 3052 3053 3054 3055 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 3050 class FaceOccluded < Struct.new( :value, :confidence) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Boolean
True if a detected face’s eyes, nose, and mouth are partially captured or if they are covered by masks, dark sunglasses, cell phones, hands, or other objects. False if common occurrences that do not impact face verification are detected, such as eye glasses, lightly tinted sunglasses, strands of hair, and others.
3050 3051 3052 3053 3054 3055 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 3050 class FaceOccluded < Struct.new( :value, :confidence) SENSITIVE = [] include Aws::Structure end |