Class: Aws::Rekognition::Types::Pose
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::Pose
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Overview
Indicates the pose of the face as determined by its pitch, roll, and yaw.
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.
1207 1208 1209 1210 1211 1212 |
# File 'lib/aws-sdk-rekognition/types.rb', line 1207 class Pose < Struct.new( :roll, :yaw, :pitch) include Aws::Structure end |
#roll ⇒ Float
Value representing the face rotation on the roll axis.
1207 1208 1209 1210 1211 1212 |
# File 'lib/aws-sdk-rekognition/types.rb', line 1207 class Pose < Struct.new( :roll, :yaw, :pitch) include Aws::Structure end |
#yaw ⇒ Float
Value representing the face rotation on the yaw axis.
1207 1208 1209 1210 1211 1212 |
# File 'lib/aws-sdk-rekognition/types.rb', line 1207 class Pose < Struct.new( :roll, :yaw, :pitch) include Aws::Structure end |