Class: Aws::Rekognition::Types::EyeDirection

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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

Instance Attribute Details

#confidenceFloat

The confidence that the service has in its predicted eye direction.

Returns:

  • (Float)


2795
2796
2797
2798
2799
2800
2801
# File 'lib/aws-sdk-rekognition/types.rb', line 2795

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

#pitchFloat

Value representing eye direction on the pitch axis.

Returns:

  • (Float)


2795
2796
2797
2798
2799
2800
2801
# File 'lib/aws-sdk-rekognition/types.rb', line 2795

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

#yawFloat

Value representing eye direction on the yaw axis.

Returns:

  • (Float)


2795
2796
2797
2798
2799
2800
2801
# File 'lib/aws-sdk-rekognition/types.rb', line 2795

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