Class: Google::Apis::VisionV1::Landmark

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/vision_v1/classes.rb,
generated/google/apis/vision_v1/representations.rb,
generated/google/apis/vision_v1/representations.rb

Overview

A face-specific landmark (for example, a face feature). Landmark positions may fall outside the bounds of the image if the face is near one or more edges of the image. Therefore it is NOT guaranteed that 0 <= x < width or 0 <= y < height.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Landmark

Returns a new instance of Landmark



77
78
79
# File 'generated/google/apis/vision_v1/classes.rb', line 77

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#positionGoogle::Apis::VisionV1::Position

A 3D position in the image, used primarily for Face detection landmarks. A valid Position must have both x and y coordinates. The position coordinates are in the same scale as the original image. Corresponds to the JSON property position



70
71
72
# File 'generated/google/apis/vision_v1/classes.rb', line 70

def position
  @position
end

#typeString

Face landmark type. Corresponds to the JSON property type

Returns:

  • (String)


75
76
77
# File 'generated/google/apis/vision_v1/classes.rb', line 75

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



82
83
84
85
# File 'generated/google/apis/vision_v1/classes.rb', line 82

def update!(**args)
  @position = args[:position] if args.key?(:position)
  @type = args[:type] if args.key?(:type)
end