Class: Aws::Rekognition::Types::EyeDirection
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::EyeDirection
- Defined in:
- gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb
Overview
Indicates the direction the eyes are gazing in (independent of the head pose) as determined by its pitch and yaw.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#confidence ⇒ Float
The confidence that the service has in its predicted eye direction.
-
#pitch ⇒ Float
Value representing eye direction on the pitch axis.
-
#yaw ⇒ Float
Value representing eye direction on the yaw axis.
Instance Attribute Details
#confidence ⇒ Float
The confidence that the service has in its predicted eye direction.
2808 2809 2810 2811 2812 2813 2814 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 2808 class EyeDirection < Struct.new( :yaw, :pitch, :confidence) SENSITIVE = [] include Aws::Structure end |
#pitch ⇒ Float
Value representing eye direction on the pitch axis.
2808 2809 2810 2811 2812 2813 2814 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 2808 class EyeDirection < Struct.new( :yaw, :pitch, :confidence) SENSITIVE = [] include Aws::Structure end |
#yaw ⇒ Float
Value representing eye direction on the yaw axis.
2808 2809 2810 2811 2812 2813 2814 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 2808 class EyeDirection < Struct.new( :yaw, :pitch, :confidence) SENSITIVE = [] include Aws::Structure end |