Class: Aws::Rekognition::Types::Pose
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::Pose
- Defined in:
- gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb
Overview
Indicates the pose of the face as determined by its pitch, roll, and yaw.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#pitch ⇒ Float
Value representing the face rotation on the pitch axis.
-
#roll ⇒ Float
Value representing the face rotation on the roll axis.
-
#yaw ⇒ Float
Value representing the face rotation on the yaw axis.
Instance Attribute Details
#pitch ⇒ Float
Value representing the face rotation on the pitch axis.
5765 5766 5767 5768 5769 5770 5771 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 5765 class Pose < Struct.new( :roll, :yaw, :pitch) SENSITIVE = [] include Aws::Structure end |