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.
4460 4461 4462 4463 4464 4465 4466 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 4460 class Pose < Struct.new( :roll, :yaw, :pitch) SENSITIVE = [] include Aws::Structure end |