Class: Google::Cloud::Vision::Annotation::Face::Features::Eyebrow
- Inherits:
-
Object
- Object
- Google::Cloud::Vision::Annotation::Face::Features::Eyebrow
- Defined in:
- lib/google/cloud/vision/annotation/face.rb
Overview
# Eyebrow
The landmarks of an eyebrow in the features of a face.
Left and right are defined from the vantage of the viewer of the image, without considering mirror projections typical of photos. So ‘face.features.eyes.left` typically is the person’s right eye.
See Eyebrows, Google::Cloud::Vision::Annotation::Face::Features and Google::Cloud::Vision::Annotation::Face.
Instance Attribute Summary collapse
-
#left ⇒ Landmark
readonly
The eyebrow, left.
-
#right ⇒ Landmark
readonly
The eyebrow, right.
-
#top ⇒ Landmark
readonly
The eyebrow, upper midpoint.
Instance Method Summary collapse
-
#initialize(left, top, right) ⇒ Eyebrow
constructor
A new instance of Eyebrow.
- #inspect ⇒ Object
-
#to_a ⇒ Array
Returns the object’s property values as an array.
-
#to_h ⇒ Hash
Deeply converts object to a hash.
- #to_s ⇒ Object
Constructor Details
#initialize(left, top, right) ⇒ Eyebrow
Returns a new instance of Eyebrow.
894 895 896 897 898 |
# File 'lib/google/cloud/vision/annotation/face.rb', line 894 def initialize left, top, right @left = left @top = top @right = right end |
Instance Attribute Details
#left ⇒ Landmark (readonly)
The eyebrow, left.
889 890 891 |
# File 'lib/google/cloud/vision/annotation/face.rb', line 889 def left @left end |
#right ⇒ Landmark (readonly)
The eyebrow, right.
889 890 891 |
# File 'lib/google/cloud/vision/annotation/face.rb', line 889 def right @right end |
#top ⇒ Landmark (readonly)
The eyebrow, upper midpoint.
889 890 891 |
# File 'lib/google/cloud/vision/annotation/face.rb', line 889 def top @top end |
Instance Method Details
#inspect ⇒ Object
925 926 927 |
# File 'lib/google/cloud/vision/annotation/face.rb', line 925 def inspect "#<Eyebrow #{self}>" end |
#to_a ⇒ Array
Returns the object’s property values as an array.
905 906 907 |
# File 'lib/google/cloud/vision/annotation/face.rb', line 905 def to_a [left, top, right] end |
#to_h ⇒ Hash
Deeply converts object to a hash. All keys will be symbolized.
914 915 916 |
# File 'lib/google/cloud/vision/annotation/face.rb', line 914 def to_h { left: left.to_h, top: top.to_h, right: right.to_h } end |
#to_s ⇒ Object
919 920 921 922 |
# File 'lib/google/cloud/vision/annotation/face.rb', line 919 def to_s format "(left: %s, top: %s, right: %s)", left.inspect, top.inspect, right.inspect end |