Class: Aws::Rekognition::Types::Pose

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#pitchFloat

Value representing the face rotation on the pitch axis.

Returns:

  • (Float)


5752
5753
5754
5755
5756
5757
5758
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 5752

class Pose < Struct.new(
  :roll,
  :yaw,
  :pitch)
  SENSITIVE = []
  include Aws::Structure
end

#rollFloat

Value representing the face rotation on the roll axis.

Returns:

  • (Float)


5752
5753
5754
5755
5756
5757
5758
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 5752

class Pose < Struct.new(
  :roll,
  :yaw,
  :pitch)
  SENSITIVE = []
  include Aws::Structure
end

#yawFloat

Value representing the face rotation on the yaw axis.

Returns:

  • (Float)


5752
5753
5754
5755
5756
5757
5758
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 5752

class Pose < Struct.new(
  :roll,
  :yaw,
  :pitch)
  SENSITIVE = []
  include Aws::Structure
end