Class: Google::Cloud::Vision::V1::FaceAnnotation

Inherits:
Object
  • Object
show all
Defined in:
lib/google/cloud/vision/v1/doc/google/cloud/vision/v1/image_annotator.rb

Overview

A face annotation object contains the results of face detection.

Defined Under Namespace

Classes: Landmark

Instance Attribute Summary collapse

Instance Attribute Details

#anger_likelihoodGoogle::Cloud::Vision::V1::Likelihood



166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
# File 'lib/google/cloud/vision/v1/doc/google/cloud/vision/v1/image_annotator.rb', line 166

class FaceAnnotation
  # 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+.
  # @!attribute [rw] type
  #   @return [Google::Cloud::Vision::V1::FaceAnnotation::Landmark::Type]
  #     Face landmark type.
  # @!attribute [rw] position
  #   @return [Google::Cloud::Vision::V1::Position]
  #     Face landmark position.
  class Landmark
    # Face landmark (feature) type.
    # Left and right are defined from the vantage of the viewer of the image
    # without considering mirror projections typical of photos. So, +LEFT_EYE+,
    # typically, is the person's right eye.
    module Type
      # Unknown face landmark detected. Should not be filled.
      UNKNOWN_LANDMARK = 0

      # Left eye.
      LEFT_EYE = 1

      # Right eye.
      RIGHT_EYE = 2

      # Left of left eyebrow.
      LEFT_OF_LEFT_EYEBROW = 3

      # Right of left eyebrow.
      RIGHT_OF_LEFT_EYEBROW = 4

      # Left of right eyebrow.
      LEFT_OF_RIGHT_EYEBROW = 5

      # Right of right eyebrow.
      RIGHT_OF_RIGHT_EYEBROW = 6

      # Midpoint between eyes.
      MIDPOINT_BETWEEN_EYES = 7

      # Nose tip.
      NOSE_TIP = 8

      # Upper lip.
      UPPER_LIP = 9

      # Lower lip.
      LOWER_LIP = 10

      # Mouth left.
      MOUTH_LEFT = 11

      # Mouth right.
      MOUTH_RIGHT = 12

      # Mouth center.
      MOUTH_CENTER = 13

      # Nose, bottom right.
      NOSE_BOTTOM_RIGHT = 14

      # Nose, bottom left.
      NOSE_BOTTOM_LEFT = 15

      # Nose, bottom center.
      NOSE_BOTTOM_CENTER = 16

      # Left eye, top boundary.
      LEFT_EYE_TOP_BOUNDARY = 17

      # Left eye, right corner.
      LEFT_EYE_RIGHT_CORNER = 18

      # Left eye, bottom boundary.
      LEFT_EYE_BOTTOM_BOUNDARY = 19

      # Left eye, left corner.
      LEFT_EYE_LEFT_CORNER = 20

      # Right eye, top boundary.
      RIGHT_EYE_TOP_BOUNDARY = 21

      # Right eye, right corner.
      RIGHT_EYE_RIGHT_CORNER = 22

      # Right eye, bottom boundary.
      RIGHT_EYE_BOTTOM_BOUNDARY = 23

      # Right eye, left corner.
      RIGHT_EYE_LEFT_CORNER = 24

      # Left eyebrow, upper midpoint.
      LEFT_EYEBROW_UPPER_MIDPOINT = 25

      # Right eyebrow, upper midpoint.
      RIGHT_EYEBROW_UPPER_MIDPOINT = 26

      # Left ear tragion.
      LEFT_EAR_TRAGION = 27

      # Right ear tragion.
      RIGHT_EAR_TRAGION = 28

      # Left eye pupil.
      LEFT_EYE_PUPIL = 29

      # Right eye pupil.
      RIGHT_EYE_PUPIL = 30

      # Forehead glabella.
      FOREHEAD_GLABELLA = 31

      # Chin gnathion.
      CHIN_GNATHION = 32

      # Chin left gonion.
      CHIN_LEFT_GONION = 33

      # Chin right gonion.
      CHIN_RIGHT_GONION = 34
    end
  end
end

#blurred_likelihoodGoogle::Cloud::Vision::V1::Likelihood



166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
# File 'lib/google/cloud/vision/v1/doc/google/cloud/vision/v1/image_annotator.rb', line 166

class FaceAnnotation
  # 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+.
  # @!attribute [rw] type
  #   @return [Google::Cloud::Vision::V1::FaceAnnotation::Landmark::Type]
  #     Face landmark type.
  # @!attribute [rw] position
  #   @return [Google::Cloud::Vision::V1::Position]
  #     Face landmark position.
  class Landmark
    # Face landmark (feature) type.
    # Left and right are defined from the vantage of the viewer of the image
    # without considering mirror projections typical of photos. So, +LEFT_EYE+,
    # typically, is the person's right eye.
    module Type
      # Unknown face landmark detected. Should not be filled.
      UNKNOWN_LANDMARK = 0

      # Left eye.
      LEFT_EYE = 1

      # Right eye.
      RIGHT_EYE = 2

      # Left of left eyebrow.
      LEFT_OF_LEFT_EYEBROW = 3

      # Right of left eyebrow.
      RIGHT_OF_LEFT_EYEBROW = 4

      # Left of right eyebrow.
      LEFT_OF_RIGHT_EYEBROW = 5

      # Right of right eyebrow.
      RIGHT_OF_RIGHT_EYEBROW = 6

      # Midpoint between eyes.
      MIDPOINT_BETWEEN_EYES = 7

      # Nose tip.
      NOSE_TIP = 8

      # Upper lip.
      UPPER_LIP = 9

      # Lower lip.
      LOWER_LIP = 10

      # Mouth left.
      MOUTH_LEFT = 11

      # Mouth right.
      MOUTH_RIGHT = 12

      # Mouth center.
      MOUTH_CENTER = 13

      # Nose, bottom right.
      NOSE_BOTTOM_RIGHT = 14

      # Nose, bottom left.
      NOSE_BOTTOM_LEFT = 15

      # Nose, bottom center.
      NOSE_BOTTOM_CENTER = 16

      # Left eye, top boundary.
      LEFT_EYE_TOP_BOUNDARY = 17

      # Left eye, right corner.
      LEFT_EYE_RIGHT_CORNER = 18

      # Left eye, bottom boundary.
      LEFT_EYE_BOTTOM_BOUNDARY = 19

      # Left eye, left corner.
      LEFT_EYE_LEFT_CORNER = 20

      # Right eye, top boundary.
      RIGHT_EYE_TOP_BOUNDARY = 21

      # Right eye, right corner.
      RIGHT_EYE_RIGHT_CORNER = 22

      # Right eye, bottom boundary.
      RIGHT_EYE_BOTTOM_BOUNDARY = 23

      # Right eye, left corner.
      RIGHT_EYE_LEFT_CORNER = 24

      # Left eyebrow, upper midpoint.
      LEFT_EYEBROW_UPPER_MIDPOINT = 25

      # Right eyebrow, upper midpoint.
      RIGHT_EYEBROW_UPPER_MIDPOINT = 26

      # Left ear tragion.
      LEFT_EAR_TRAGION = 27

      # Right ear tragion.
      RIGHT_EAR_TRAGION = 28

      # Left eye pupil.
      LEFT_EYE_PUPIL = 29

      # Right eye pupil.
      RIGHT_EYE_PUPIL = 30

      # Forehead glabella.
      FOREHEAD_GLABELLA = 31

      # Chin gnathion.
      CHIN_GNATHION = 32

      # Chin left gonion.
      CHIN_LEFT_GONION = 33

      # Chin right gonion.
      CHIN_RIGHT_GONION = 34
    end
  end
end

#bounding_polyGoogle::Cloud::Vision::V1::BoundingPoly



166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
# File 'lib/google/cloud/vision/v1/doc/google/cloud/vision/v1/image_annotator.rb', line 166

class FaceAnnotation
  # 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+.
  # @!attribute [rw] type
  #   @return [Google::Cloud::Vision::V1::FaceAnnotation::Landmark::Type]
  #     Face landmark type.
  # @!attribute [rw] position
  #   @return [Google::Cloud::Vision::V1::Position]
  #     Face landmark position.
  class Landmark
    # Face landmark (feature) type.
    # Left and right are defined from the vantage of the viewer of the image
    # without considering mirror projections typical of photos. So, +LEFT_EYE+,
    # typically, is the person's right eye.
    module Type
      # Unknown face landmark detected. Should not be filled.
      UNKNOWN_LANDMARK = 0

      # Left eye.
      LEFT_EYE = 1

      # Right eye.
      RIGHT_EYE = 2

      # Left of left eyebrow.
      LEFT_OF_LEFT_EYEBROW = 3

      # Right of left eyebrow.
      RIGHT_OF_LEFT_EYEBROW = 4

      # Left of right eyebrow.
      LEFT_OF_RIGHT_EYEBROW = 5

      # Right of right eyebrow.
      RIGHT_OF_RIGHT_EYEBROW = 6

      # Midpoint between eyes.
      MIDPOINT_BETWEEN_EYES = 7

      # Nose tip.
      NOSE_TIP = 8

      # Upper lip.
      UPPER_LIP = 9

      # Lower lip.
      LOWER_LIP = 10

      # Mouth left.
      MOUTH_LEFT = 11

      # Mouth right.
      MOUTH_RIGHT = 12

      # Mouth center.
      MOUTH_CENTER = 13

      # Nose, bottom right.
      NOSE_BOTTOM_RIGHT = 14

      # Nose, bottom left.
      NOSE_BOTTOM_LEFT = 15

      # Nose, bottom center.
      NOSE_BOTTOM_CENTER = 16

      # Left eye, top boundary.
      LEFT_EYE_TOP_BOUNDARY = 17

      # Left eye, right corner.
      LEFT_EYE_RIGHT_CORNER = 18

      # Left eye, bottom boundary.
      LEFT_EYE_BOTTOM_BOUNDARY = 19

      # Left eye, left corner.
      LEFT_EYE_LEFT_CORNER = 20

      # Right eye, top boundary.
      RIGHT_EYE_TOP_BOUNDARY = 21

      # Right eye, right corner.
      RIGHT_EYE_RIGHT_CORNER = 22

      # Right eye, bottom boundary.
      RIGHT_EYE_BOTTOM_BOUNDARY = 23

      # Right eye, left corner.
      RIGHT_EYE_LEFT_CORNER = 24

      # Left eyebrow, upper midpoint.
      LEFT_EYEBROW_UPPER_MIDPOINT = 25

      # Right eyebrow, upper midpoint.
      RIGHT_EYEBROW_UPPER_MIDPOINT = 26

      # Left ear tragion.
      LEFT_EAR_TRAGION = 27

      # Right ear tragion.
      RIGHT_EAR_TRAGION = 28

      # Left eye pupil.
      LEFT_EYE_PUPIL = 29

      # Right eye pupil.
      RIGHT_EYE_PUPIL = 30

      # Forehead glabella.
      FOREHEAD_GLABELLA = 31

      # Chin gnathion.
      CHIN_GNATHION = 32

      # Chin left gonion.
      CHIN_LEFT_GONION = 33

      # Chin right gonion.
      CHIN_RIGHT_GONION = 34
    end
  end
end

#detection_confidenceFloat



166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
# File 'lib/google/cloud/vision/v1/doc/google/cloud/vision/v1/image_annotator.rb', line 166

class FaceAnnotation
  # 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+.
  # @!attribute [rw] type
  #   @return [Google::Cloud::Vision::V1::FaceAnnotation::Landmark::Type]
  #     Face landmark type.
  # @!attribute [rw] position
  #   @return [Google::Cloud::Vision::V1::Position]
  #     Face landmark position.
  class Landmark
    # Face landmark (feature) type.
    # Left and right are defined from the vantage of the viewer of the image
    # without considering mirror projections typical of photos. So, +LEFT_EYE+,
    # typically, is the person's right eye.
    module Type
      # Unknown face landmark detected. Should not be filled.
      UNKNOWN_LANDMARK = 0

      # Left eye.
      LEFT_EYE = 1

      # Right eye.
      RIGHT_EYE = 2

      # Left of left eyebrow.
      LEFT_OF_LEFT_EYEBROW = 3

      # Right of left eyebrow.
      RIGHT_OF_LEFT_EYEBROW = 4

      # Left of right eyebrow.
      LEFT_OF_RIGHT_EYEBROW = 5

      # Right of right eyebrow.
      RIGHT_OF_RIGHT_EYEBROW = 6

      # Midpoint between eyes.
      MIDPOINT_BETWEEN_EYES = 7

      # Nose tip.
      NOSE_TIP = 8

      # Upper lip.
      UPPER_LIP = 9

      # Lower lip.
      LOWER_LIP = 10

      # Mouth left.
      MOUTH_LEFT = 11

      # Mouth right.
      MOUTH_RIGHT = 12

      # Mouth center.
      MOUTH_CENTER = 13

      # Nose, bottom right.
      NOSE_BOTTOM_RIGHT = 14

      # Nose, bottom left.
      NOSE_BOTTOM_LEFT = 15

      # Nose, bottom center.
      NOSE_BOTTOM_CENTER = 16

      # Left eye, top boundary.
      LEFT_EYE_TOP_BOUNDARY = 17

      # Left eye, right corner.
      LEFT_EYE_RIGHT_CORNER = 18

      # Left eye, bottom boundary.
      LEFT_EYE_BOTTOM_BOUNDARY = 19

      # Left eye, left corner.
      LEFT_EYE_LEFT_CORNER = 20

      # Right eye, top boundary.
      RIGHT_EYE_TOP_BOUNDARY = 21

      # Right eye, right corner.
      RIGHT_EYE_RIGHT_CORNER = 22

      # Right eye, bottom boundary.
      RIGHT_EYE_BOTTOM_BOUNDARY = 23

      # Right eye, left corner.
      RIGHT_EYE_LEFT_CORNER = 24

      # Left eyebrow, upper midpoint.
      LEFT_EYEBROW_UPPER_MIDPOINT = 25

      # Right eyebrow, upper midpoint.
      RIGHT_EYEBROW_UPPER_MIDPOINT = 26

      # Left ear tragion.
      LEFT_EAR_TRAGION = 27

      # Right ear tragion.
      RIGHT_EAR_TRAGION = 28

      # Left eye pupil.
      LEFT_EYE_PUPIL = 29

      # Right eye pupil.
      RIGHT_EYE_PUPIL = 30

      # Forehead glabella.
      FOREHEAD_GLABELLA = 31

      # Chin gnathion.
      CHIN_GNATHION = 32

      # Chin left gonion.
      CHIN_LEFT_GONION = 33

      # Chin right gonion.
      CHIN_RIGHT_GONION = 34
    end
  end
end

#fd_bounding_polyGoogle::Cloud::Vision::V1::BoundingPoly



166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
# File 'lib/google/cloud/vision/v1/doc/google/cloud/vision/v1/image_annotator.rb', line 166

class FaceAnnotation
  # 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+.
  # @!attribute [rw] type
  #   @return [Google::Cloud::Vision::V1::FaceAnnotation::Landmark::Type]
  #     Face landmark type.
  # @!attribute [rw] position
  #   @return [Google::Cloud::Vision::V1::Position]
  #     Face landmark position.
  class Landmark
    # Face landmark (feature) type.
    # Left and right are defined from the vantage of the viewer of the image
    # without considering mirror projections typical of photos. So, +LEFT_EYE+,
    # typically, is the person's right eye.
    module Type
      # Unknown face landmark detected. Should not be filled.
      UNKNOWN_LANDMARK = 0

      # Left eye.
      LEFT_EYE = 1

      # Right eye.
      RIGHT_EYE = 2

      # Left of left eyebrow.
      LEFT_OF_LEFT_EYEBROW = 3

      # Right of left eyebrow.
      RIGHT_OF_LEFT_EYEBROW = 4

      # Left of right eyebrow.
      LEFT_OF_RIGHT_EYEBROW = 5

      # Right of right eyebrow.
      RIGHT_OF_RIGHT_EYEBROW = 6

      # Midpoint between eyes.
      MIDPOINT_BETWEEN_EYES = 7

      # Nose tip.
      NOSE_TIP = 8

      # Upper lip.
      UPPER_LIP = 9

      # Lower lip.
      LOWER_LIP = 10

      # Mouth left.
      MOUTH_LEFT = 11

      # Mouth right.
      MOUTH_RIGHT = 12

      # Mouth center.
      MOUTH_CENTER = 13

      # Nose, bottom right.
      NOSE_BOTTOM_RIGHT = 14

      # Nose, bottom left.
      NOSE_BOTTOM_LEFT = 15

      # Nose, bottom center.
      NOSE_BOTTOM_CENTER = 16

      # Left eye, top boundary.
      LEFT_EYE_TOP_BOUNDARY = 17

      # Left eye, right corner.
      LEFT_EYE_RIGHT_CORNER = 18

      # Left eye, bottom boundary.
      LEFT_EYE_BOTTOM_BOUNDARY = 19

      # Left eye, left corner.
      LEFT_EYE_LEFT_CORNER = 20

      # Right eye, top boundary.
      RIGHT_EYE_TOP_BOUNDARY = 21

      # Right eye, right corner.
      RIGHT_EYE_RIGHT_CORNER = 22

      # Right eye, bottom boundary.
      RIGHT_EYE_BOTTOM_BOUNDARY = 23

      # Right eye, left corner.
      RIGHT_EYE_LEFT_CORNER = 24

      # Left eyebrow, upper midpoint.
      LEFT_EYEBROW_UPPER_MIDPOINT = 25

      # Right eyebrow, upper midpoint.
      RIGHT_EYEBROW_UPPER_MIDPOINT = 26

      # Left ear tragion.
      LEFT_EAR_TRAGION = 27

      # Right ear tragion.
      RIGHT_EAR_TRAGION = 28

      # Left eye pupil.
      LEFT_EYE_PUPIL = 29

      # Right eye pupil.
      RIGHT_EYE_PUPIL = 30

      # Forehead glabella.
      FOREHEAD_GLABELLA = 31

      # Chin gnathion.
      CHIN_GNATHION = 32

      # Chin left gonion.
      CHIN_LEFT_GONION = 33

      # Chin right gonion.
      CHIN_RIGHT_GONION = 34
    end
  end
end

#headwear_likelihoodGoogle::Cloud::Vision::V1::Likelihood



166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
# File 'lib/google/cloud/vision/v1/doc/google/cloud/vision/v1/image_annotator.rb', line 166

class FaceAnnotation
  # 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+.
  # @!attribute [rw] type
  #   @return [Google::Cloud::Vision::V1::FaceAnnotation::Landmark::Type]
  #     Face landmark type.
  # @!attribute [rw] position
  #   @return [Google::Cloud::Vision::V1::Position]
  #     Face landmark position.
  class Landmark
    # Face landmark (feature) type.
    # Left and right are defined from the vantage of the viewer of the image
    # without considering mirror projections typical of photos. So, +LEFT_EYE+,
    # typically, is the person's right eye.
    module Type
      # Unknown face landmark detected. Should not be filled.
      UNKNOWN_LANDMARK = 0

      # Left eye.
      LEFT_EYE = 1

      # Right eye.
      RIGHT_EYE = 2

      # Left of left eyebrow.
      LEFT_OF_LEFT_EYEBROW = 3

      # Right of left eyebrow.
      RIGHT_OF_LEFT_EYEBROW = 4

      # Left of right eyebrow.
      LEFT_OF_RIGHT_EYEBROW = 5

      # Right of right eyebrow.
      RIGHT_OF_RIGHT_EYEBROW = 6

      # Midpoint between eyes.
      MIDPOINT_BETWEEN_EYES = 7

      # Nose tip.
      NOSE_TIP = 8

      # Upper lip.
      UPPER_LIP = 9

      # Lower lip.
      LOWER_LIP = 10

      # Mouth left.
      MOUTH_LEFT = 11

      # Mouth right.
      MOUTH_RIGHT = 12

      # Mouth center.
      MOUTH_CENTER = 13

      # Nose, bottom right.
      NOSE_BOTTOM_RIGHT = 14

      # Nose, bottom left.
      NOSE_BOTTOM_LEFT = 15

      # Nose, bottom center.
      NOSE_BOTTOM_CENTER = 16

      # Left eye, top boundary.
      LEFT_EYE_TOP_BOUNDARY = 17

      # Left eye, right corner.
      LEFT_EYE_RIGHT_CORNER = 18

      # Left eye, bottom boundary.
      LEFT_EYE_BOTTOM_BOUNDARY = 19

      # Left eye, left corner.
      LEFT_EYE_LEFT_CORNER = 20

      # Right eye, top boundary.
      RIGHT_EYE_TOP_BOUNDARY = 21

      # Right eye, right corner.
      RIGHT_EYE_RIGHT_CORNER = 22

      # Right eye, bottom boundary.
      RIGHT_EYE_BOTTOM_BOUNDARY = 23

      # Right eye, left corner.
      RIGHT_EYE_LEFT_CORNER = 24

      # Left eyebrow, upper midpoint.
      LEFT_EYEBROW_UPPER_MIDPOINT = 25

      # Right eyebrow, upper midpoint.
      RIGHT_EYEBROW_UPPER_MIDPOINT = 26

      # Left ear tragion.
      LEFT_EAR_TRAGION = 27

      # Right ear tragion.
      RIGHT_EAR_TRAGION = 28

      # Left eye pupil.
      LEFT_EYE_PUPIL = 29

      # Right eye pupil.
      RIGHT_EYE_PUPIL = 30

      # Forehead glabella.
      FOREHEAD_GLABELLA = 31

      # Chin gnathion.
      CHIN_GNATHION = 32

      # Chin left gonion.
      CHIN_LEFT_GONION = 33

      # Chin right gonion.
      CHIN_RIGHT_GONION = 34
    end
  end
end

#joy_likelihoodGoogle::Cloud::Vision::V1::Likelihood



166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
# File 'lib/google/cloud/vision/v1/doc/google/cloud/vision/v1/image_annotator.rb', line 166

class FaceAnnotation
  # 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+.
  # @!attribute [rw] type
  #   @return [Google::Cloud::Vision::V1::FaceAnnotation::Landmark::Type]
  #     Face landmark type.
  # @!attribute [rw] position
  #   @return [Google::Cloud::Vision::V1::Position]
  #     Face landmark position.
  class Landmark
    # Face landmark (feature) type.
    # Left and right are defined from the vantage of the viewer of the image
    # without considering mirror projections typical of photos. So, +LEFT_EYE+,
    # typically, is the person's right eye.
    module Type
      # Unknown face landmark detected. Should not be filled.
      UNKNOWN_LANDMARK = 0

      # Left eye.
      LEFT_EYE = 1

      # Right eye.
      RIGHT_EYE = 2

      # Left of left eyebrow.
      LEFT_OF_LEFT_EYEBROW = 3

      # Right of left eyebrow.
      RIGHT_OF_LEFT_EYEBROW = 4

      # Left of right eyebrow.
      LEFT_OF_RIGHT_EYEBROW = 5

      # Right of right eyebrow.
      RIGHT_OF_RIGHT_EYEBROW = 6

      # Midpoint between eyes.
      MIDPOINT_BETWEEN_EYES = 7

      # Nose tip.
      NOSE_TIP = 8

      # Upper lip.
      UPPER_LIP = 9

      # Lower lip.
      LOWER_LIP = 10

      # Mouth left.
      MOUTH_LEFT = 11

      # Mouth right.
      MOUTH_RIGHT = 12

      # Mouth center.
      MOUTH_CENTER = 13

      # Nose, bottom right.
      NOSE_BOTTOM_RIGHT = 14

      # Nose, bottom left.
      NOSE_BOTTOM_LEFT = 15

      # Nose, bottom center.
      NOSE_BOTTOM_CENTER = 16

      # Left eye, top boundary.
      LEFT_EYE_TOP_BOUNDARY = 17

      # Left eye, right corner.
      LEFT_EYE_RIGHT_CORNER = 18

      # Left eye, bottom boundary.
      LEFT_EYE_BOTTOM_BOUNDARY = 19

      # Left eye, left corner.
      LEFT_EYE_LEFT_CORNER = 20

      # Right eye, top boundary.
      RIGHT_EYE_TOP_BOUNDARY = 21

      # Right eye, right corner.
      RIGHT_EYE_RIGHT_CORNER = 22

      # Right eye, bottom boundary.
      RIGHT_EYE_BOTTOM_BOUNDARY = 23

      # Right eye, left corner.
      RIGHT_EYE_LEFT_CORNER = 24

      # Left eyebrow, upper midpoint.
      LEFT_EYEBROW_UPPER_MIDPOINT = 25

      # Right eyebrow, upper midpoint.
      RIGHT_EYEBROW_UPPER_MIDPOINT = 26

      # Left ear tragion.
      LEFT_EAR_TRAGION = 27

      # Right ear tragion.
      RIGHT_EAR_TRAGION = 28

      # Left eye pupil.
      LEFT_EYE_PUPIL = 29

      # Right eye pupil.
      RIGHT_EYE_PUPIL = 30

      # Forehead glabella.
      FOREHEAD_GLABELLA = 31

      # Chin gnathion.
      CHIN_GNATHION = 32

      # Chin left gonion.
      CHIN_LEFT_GONION = 33

      # Chin right gonion.
      CHIN_RIGHT_GONION = 34
    end
  end
end

#landmarking_confidenceFloat



166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
# File 'lib/google/cloud/vision/v1/doc/google/cloud/vision/v1/image_annotator.rb', line 166

class FaceAnnotation
  # 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+.
  # @!attribute [rw] type
  #   @return [Google::Cloud::Vision::V1::FaceAnnotation::Landmark::Type]
  #     Face landmark type.
  # @!attribute [rw] position
  #   @return [Google::Cloud::Vision::V1::Position]
  #     Face landmark position.
  class Landmark
    # Face landmark (feature) type.
    # Left and right are defined from the vantage of the viewer of the image
    # without considering mirror projections typical of photos. So, +LEFT_EYE+,
    # typically, is the person's right eye.
    module Type
      # Unknown face landmark detected. Should not be filled.
      UNKNOWN_LANDMARK = 0

      # Left eye.
      LEFT_EYE = 1

      # Right eye.
      RIGHT_EYE = 2

      # Left of left eyebrow.
      LEFT_OF_LEFT_EYEBROW = 3

      # Right of left eyebrow.
      RIGHT_OF_LEFT_EYEBROW = 4

      # Left of right eyebrow.
      LEFT_OF_RIGHT_EYEBROW = 5

      # Right of right eyebrow.
      RIGHT_OF_RIGHT_EYEBROW = 6

      # Midpoint between eyes.
      MIDPOINT_BETWEEN_EYES = 7

      # Nose tip.
      NOSE_TIP = 8

      # Upper lip.
      UPPER_LIP = 9

      # Lower lip.
      LOWER_LIP = 10

      # Mouth left.
      MOUTH_LEFT = 11

      # Mouth right.
      MOUTH_RIGHT = 12

      # Mouth center.
      MOUTH_CENTER = 13

      # Nose, bottom right.
      NOSE_BOTTOM_RIGHT = 14

      # Nose, bottom left.
      NOSE_BOTTOM_LEFT = 15

      # Nose, bottom center.
      NOSE_BOTTOM_CENTER = 16

      # Left eye, top boundary.
      LEFT_EYE_TOP_BOUNDARY = 17

      # Left eye, right corner.
      LEFT_EYE_RIGHT_CORNER = 18

      # Left eye, bottom boundary.
      LEFT_EYE_BOTTOM_BOUNDARY = 19

      # Left eye, left corner.
      LEFT_EYE_LEFT_CORNER = 20

      # Right eye, top boundary.
      RIGHT_EYE_TOP_BOUNDARY = 21

      # Right eye, right corner.
      RIGHT_EYE_RIGHT_CORNER = 22

      # Right eye, bottom boundary.
      RIGHT_EYE_BOTTOM_BOUNDARY = 23

      # Right eye, left corner.
      RIGHT_EYE_LEFT_CORNER = 24

      # Left eyebrow, upper midpoint.
      LEFT_EYEBROW_UPPER_MIDPOINT = 25

      # Right eyebrow, upper midpoint.
      RIGHT_EYEBROW_UPPER_MIDPOINT = 26

      # Left ear tragion.
      LEFT_EAR_TRAGION = 27

      # Right ear tragion.
      RIGHT_EAR_TRAGION = 28

      # Left eye pupil.
      LEFT_EYE_PUPIL = 29

      # Right eye pupil.
      RIGHT_EYE_PUPIL = 30

      # Forehead glabella.
      FOREHEAD_GLABELLA = 31

      # Chin gnathion.
      CHIN_GNATHION = 32

      # Chin left gonion.
      CHIN_LEFT_GONION = 33

      # Chin right gonion.
      CHIN_RIGHT_GONION = 34
    end
  end
end

#landmarksArray<Google::Cloud::Vision::V1::FaceAnnotation::Landmark>



166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
# File 'lib/google/cloud/vision/v1/doc/google/cloud/vision/v1/image_annotator.rb', line 166

class FaceAnnotation
  # 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+.
  # @!attribute [rw] type
  #   @return [Google::Cloud::Vision::V1::FaceAnnotation::Landmark::Type]
  #     Face landmark type.
  # @!attribute [rw] position
  #   @return [Google::Cloud::Vision::V1::Position]
  #     Face landmark position.
  class Landmark
    # Face landmark (feature) type.
    # Left and right are defined from the vantage of the viewer of the image
    # without considering mirror projections typical of photos. So, +LEFT_EYE+,
    # typically, is the person's right eye.
    module Type
      # Unknown face landmark detected. Should not be filled.
      UNKNOWN_LANDMARK = 0

      # Left eye.
      LEFT_EYE = 1

      # Right eye.
      RIGHT_EYE = 2

      # Left of left eyebrow.
      LEFT_OF_LEFT_EYEBROW = 3

      # Right of left eyebrow.
      RIGHT_OF_LEFT_EYEBROW = 4

      # Left of right eyebrow.
      LEFT_OF_RIGHT_EYEBROW = 5

      # Right of right eyebrow.
      RIGHT_OF_RIGHT_EYEBROW = 6

      # Midpoint between eyes.
      MIDPOINT_BETWEEN_EYES = 7

      # Nose tip.
      NOSE_TIP = 8

      # Upper lip.
      UPPER_LIP = 9

      # Lower lip.
      LOWER_LIP = 10

      # Mouth left.
      MOUTH_LEFT = 11

      # Mouth right.
      MOUTH_RIGHT = 12

      # Mouth center.
      MOUTH_CENTER = 13

      # Nose, bottom right.
      NOSE_BOTTOM_RIGHT = 14

      # Nose, bottom left.
      NOSE_BOTTOM_LEFT = 15

      # Nose, bottom center.
      NOSE_BOTTOM_CENTER = 16

      # Left eye, top boundary.
      LEFT_EYE_TOP_BOUNDARY = 17

      # Left eye, right corner.
      LEFT_EYE_RIGHT_CORNER = 18

      # Left eye, bottom boundary.
      LEFT_EYE_BOTTOM_BOUNDARY = 19

      # Left eye, left corner.
      LEFT_EYE_LEFT_CORNER = 20

      # Right eye, top boundary.
      RIGHT_EYE_TOP_BOUNDARY = 21

      # Right eye, right corner.
      RIGHT_EYE_RIGHT_CORNER = 22

      # Right eye, bottom boundary.
      RIGHT_EYE_BOTTOM_BOUNDARY = 23

      # Right eye, left corner.
      RIGHT_EYE_LEFT_CORNER = 24

      # Left eyebrow, upper midpoint.
      LEFT_EYEBROW_UPPER_MIDPOINT = 25

      # Right eyebrow, upper midpoint.
      RIGHT_EYEBROW_UPPER_MIDPOINT = 26

      # Left ear tragion.
      LEFT_EAR_TRAGION = 27

      # Right ear tragion.
      RIGHT_EAR_TRAGION = 28

      # Left eye pupil.
      LEFT_EYE_PUPIL = 29

      # Right eye pupil.
      RIGHT_EYE_PUPIL = 30

      # Forehead glabella.
      FOREHEAD_GLABELLA = 31

      # Chin gnathion.
      CHIN_GNATHION = 32

      # Chin left gonion.
      CHIN_LEFT_GONION = 33

      # Chin right gonion.
      CHIN_RIGHT_GONION = 34
    end
  end
end

#pan_angleFloat



166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
# File 'lib/google/cloud/vision/v1/doc/google/cloud/vision/v1/image_annotator.rb', line 166

class FaceAnnotation
  # 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+.
  # @!attribute [rw] type
  #   @return [Google::Cloud::Vision::V1::FaceAnnotation::Landmark::Type]
  #     Face landmark type.
  # @!attribute [rw] position
  #   @return [Google::Cloud::Vision::V1::Position]
  #     Face landmark position.
  class Landmark
    # Face landmark (feature) type.
    # Left and right are defined from the vantage of the viewer of the image
    # without considering mirror projections typical of photos. So, +LEFT_EYE+,
    # typically, is the person's right eye.
    module Type
      # Unknown face landmark detected. Should not be filled.
      UNKNOWN_LANDMARK = 0

      # Left eye.
      LEFT_EYE = 1

      # Right eye.
      RIGHT_EYE = 2

      # Left of left eyebrow.
      LEFT_OF_LEFT_EYEBROW = 3

      # Right of left eyebrow.
      RIGHT_OF_LEFT_EYEBROW = 4

      # Left of right eyebrow.
      LEFT_OF_RIGHT_EYEBROW = 5

      # Right of right eyebrow.
      RIGHT_OF_RIGHT_EYEBROW = 6

      # Midpoint between eyes.
      MIDPOINT_BETWEEN_EYES = 7

      # Nose tip.
      NOSE_TIP = 8

      # Upper lip.
      UPPER_LIP = 9

      # Lower lip.
      LOWER_LIP = 10

      # Mouth left.
      MOUTH_LEFT = 11

      # Mouth right.
      MOUTH_RIGHT = 12

      # Mouth center.
      MOUTH_CENTER = 13

      # Nose, bottom right.
      NOSE_BOTTOM_RIGHT = 14

      # Nose, bottom left.
      NOSE_BOTTOM_LEFT = 15

      # Nose, bottom center.
      NOSE_BOTTOM_CENTER = 16

      # Left eye, top boundary.
      LEFT_EYE_TOP_BOUNDARY = 17

      # Left eye, right corner.
      LEFT_EYE_RIGHT_CORNER = 18

      # Left eye, bottom boundary.
      LEFT_EYE_BOTTOM_BOUNDARY = 19

      # Left eye, left corner.
      LEFT_EYE_LEFT_CORNER = 20

      # Right eye, top boundary.
      RIGHT_EYE_TOP_BOUNDARY = 21

      # Right eye, right corner.
      RIGHT_EYE_RIGHT_CORNER = 22

      # Right eye, bottom boundary.
      RIGHT_EYE_BOTTOM_BOUNDARY = 23

      # Right eye, left corner.
      RIGHT_EYE_LEFT_CORNER = 24

      # Left eyebrow, upper midpoint.
      LEFT_EYEBROW_UPPER_MIDPOINT = 25

      # Right eyebrow, upper midpoint.
      RIGHT_EYEBROW_UPPER_MIDPOINT = 26

      # Left ear tragion.
      LEFT_EAR_TRAGION = 27

      # Right ear tragion.
      RIGHT_EAR_TRAGION = 28

      # Left eye pupil.
      LEFT_EYE_PUPIL = 29

      # Right eye pupil.
      RIGHT_EYE_PUPIL = 30

      # Forehead glabella.
      FOREHEAD_GLABELLA = 31

      # Chin gnathion.
      CHIN_GNATHION = 32

      # Chin left gonion.
      CHIN_LEFT_GONION = 33

      # Chin right gonion.
      CHIN_RIGHT_GONION = 34
    end
  end
end

#roll_angleFloat



166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
# File 'lib/google/cloud/vision/v1/doc/google/cloud/vision/v1/image_annotator.rb', line 166

class FaceAnnotation
  # 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+.
  # @!attribute [rw] type
  #   @return [Google::Cloud::Vision::V1::FaceAnnotation::Landmark::Type]
  #     Face landmark type.
  # @!attribute [rw] position
  #   @return [Google::Cloud::Vision::V1::Position]
  #     Face landmark position.
  class Landmark
    # Face landmark (feature) type.
    # Left and right are defined from the vantage of the viewer of the image
    # without considering mirror projections typical of photos. So, +LEFT_EYE+,
    # typically, is the person's right eye.
    module Type
      # Unknown face landmark detected. Should not be filled.
      UNKNOWN_LANDMARK = 0

      # Left eye.
      LEFT_EYE = 1

      # Right eye.
      RIGHT_EYE = 2

      # Left of left eyebrow.
      LEFT_OF_LEFT_EYEBROW = 3

      # Right of left eyebrow.
      RIGHT_OF_LEFT_EYEBROW = 4

      # Left of right eyebrow.
      LEFT_OF_RIGHT_EYEBROW = 5

      # Right of right eyebrow.
      RIGHT_OF_RIGHT_EYEBROW = 6

      # Midpoint between eyes.
      MIDPOINT_BETWEEN_EYES = 7

      # Nose tip.
      NOSE_TIP = 8

      # Upper lip.
      UPPER_LIP = 9

      # Lower lip.
      LOWER_LIP = 10

      # Mouth left.
      MOUTH_LEFT = 11

      # Mouth right.
      MOUTH_RIGHT = 12

      # Mouth center.
      MOUTH_CENTER = 13

      # Nose, bottom right.
      NOSE_BOTTOM_RIGHT = 14

      # Nose, bottom left.
      NOSE_BOTTOM_LEFT = 15

      # Nose, bottom center.
      NOSE_BOTTOM_CENTER = 16

      # Left eye, top boundary.
      LEFT_EYE_TOP_BOUNDARY = 17

      # Left eye, right corner.
      LEFT_EYE_RIGHT_CORNER = 18

      # Left eye, bottom boundary.
      LEFT_EYE_BOTTOM_BOUNDARY = 19

      # Left eye, left corner.
      LEFT_EYE_LEFT_CORNER = 20

      # Right eye, top boundary.
      RIGHT_EYE_TOP_BOUNDARY = 21

      # Right eye, right corner.
      RIGHT_EYE_RIGHT_CORNER = 22

      # Right eye, bottom boundary.
      RIGHT_EYE_BOTTOM_BOUNDARY = 23

      # Right eye, left corner.
      RIGHT_EYE_LEFT_CORNER = 24

      # Left eyebrow, upper midpoint.
      LEFT_EYEBROW_UPPER_MIDPOINT = 25

      # Right eyebrow, upper midpoint.
      RIGHT_EYEBROW_UPPER_MIDPOINT = 26

      # Left ear tragion.
      LEFT_EAR_TRAGION = 27

      # Right ear tragion.
      RIGHT_EAR_TRAGION = 28

      # Left eye pupil.
      LEFT_EYE_PUPIL = 29

      # Right eye pupil.
      RIGHT_EYE_PUPIL = 30

      # Forehead glabella.
      FOREHEAD_GLABELLA = 31

      # Chin gnathion.
      CHIN_GNATHION = 32

      # Chin left gonion.
      CHIN_LEFT_GONION = 33

      # Chin right gonion.
      CHIN_RIGHT_GONION = 34
    end
  end
end

#sorrow_likelihoodGoogle::Cloud::Vision::V1::Likelihood



166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
# File 'lib/google/cloud/vision/v1/doc/google/cloud/vision/v1/image_annotator.rb', line 166

class FaceAnnotation
  # 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+.
  # @!attribute [rw] type
  #   @return [Google::Cloud::Vision::V1::FaceAnnotation::Landmark::Type]
  #     Face landmark type.
  # @!attribute [rw] position
  #   @return [Google::Cloud::Vision::V1::Position]
  #     Face landmark position.
  class Landmark
    # Face landmark (feature) type.
    # Left and right are defined from the vantage of the viewer of the image
    # without considering mirror projections typical of photos. So, +LEFT_EYE+,
    # typically, is the person's right eye.
    module Type
      # Unknown face landmark detected. Should not be filled.
      UNKNOWN_LANDMARK = 0

      # Left eye.
      LEFT_EYE = 1

      # Right eye.
      RIGHT_EYE = 2

      # Left of left eyebrow.
      LEFT_OF_LEFT_EYEBROW = 3

      # Right of left eyebrow.
      RIGHT_OF_LEFT_EYEBROW = 4

      # Left of right eyebrow.
      LEFT_OF_RIGHT_EYEBROW = 5

      # Right of right eyebrow.
      RIGHT_OF_RIGHT_EYEBROW = 6

      # Midpoint between eyes.
      MIDPOINT_BETWEEN_EYES = 7

      # Nose tip.
      NOSE_TIP = 8

      # Upper lip.
      UPPER_LIP = 9

      # Lower lip.
      LOWER_LIP = 10

      # Mouth left.
      MOUTH_LEFT = 11

      # Mouth right.
      MOUTH_RIGHT = 12

      # Mouth center.
      MOUTH_CENTER = 13

      # Nose, bottom right.
      NOSE_BOTTOM_RIGHT = 14

      # Nose, bottom left.
      NOSE_BOTTOM_LEFT = 15

      # Nose, bottom center.
      NOSE_BOTTOM_CENTER = 16

      # Left eye, top boundary.
      LEFT_EYE_TOP_BOUNDARY = 17

      # Left eye, right corner.
      LEFT_EYE_RIGHT_CORNER = 18

      # Left eye, bottom boundary.
      LEFT_EYE_BOTTOM_BOUNDARY = 19

      # Left eye, left corner.
      LEFT_EYE_LEFT_CORNER = 20

      # Right eye, top boundary.
      RIGHT_EYE_TOP_BOUNDARY = 21

      # Right eye, right corner.
      RIGHT_EYE_RIGHT_CORNER = 22

      # Right eye, bottom boundary.
      RIGHT_EYE_BOTTOM_BOUNDARY = 23

      # Right eye, left corner.
      RIGHT_EYE_LEFT_CORNER = 24

      # Left eyebrow, upper midpoint.
      LEFT_EYEBROW_UPPER_MIDPOINT = 25

      # Right eyebrow, upper midpoint.
      RIGHT_EYEBROW_UPPER_MIDPOINT = 26

      # Left ear tragion.
      LEFT_EAR_TRAGION = 27

      # Right ear tragion.
      RIGHT_EAR_TRAGION = 28

      # Left eye pupil.
      LEFT_EYE_PUPIL = 29

      # Right eye pupil.
      RIGHT_EYE_PUPIL = 30

      # Forehead glabella.
      FOREHEAD_GLABELLA = 31

      # Chin gnathion.
      CHIN_GNATHION = 32

      # Chin left gonion.
      CHIN_LEFT_GONION = 33

      # Chin right gonion.
      CHIN_RIGHT_GONION = 34
    end
  end
end

#surprise_likelihoodGoogle::Cloud::Vision::V1::Likelihood



166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
# File 'lib/google/cloud/vision/v1/doc/google/cloud/vision/v1/image_annotator.rb', line 166

class FaceAnnotation
  # 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+.
  # @!attribute [rw] type
  #   @return [Google::Cloud::Vision::V1::FaceAnnotation::Landmark::Type]
  #     Face landmark type.
  # @!attribute [rw] position
  #   @return [Google::Cloud::Vision::V1::Position]
  #     Face landmark position.
  class Landmark
    # Face landmark (feature) type.
    # Left and right are defined from the vantage of the viewer of the image
    # without considering mirror projections typical of photos. So, +LEFT_EYE+,
    # typically, is the person's right eye.
    module Type
      # Unknown face landmark detected. Should not be filled.
      UNKNOWN_LANDMARK = 0

      # Left eye.
      LEFT_EYE = 1

      # Right eye.
      RIGHT_EYE = 2

      # Left of left eyebrow.
      LEFT_OF_LEFT_EYEBROW = 3

      # Right of left eyebrow.
      RIGHT_OF_LEFT_EYEBROW = 4

      # Left of right eyebrow.
      LEFT_OF_RIGHT_EYEBROW = 5

      # Right of right eyebrow.
      RIGHT_OF_RIGHT_EYEBROW = 6

      # Midpoint between eyes.
      MIDPOINT_BETWEEN_EYES = 7

      # Nose tip.
      NOSE_TIP = 8

      # Upper lip.
      UPPER_LIP = 9

      # Lower lip.
      LOWER_LIP = 10

      # Mouth left.
      MOUTH_LEFT = 11

      # Mouth right.
      MOUTH_RIGHT = 12

      # Mouth center.
      MOUTH_CENTER = 13

      # Nose, bottom right.
      NOSE_BOTTOM_RIGHT = 14

      # Nose, bottom left.
      NOSE_BOTTOM_LEFT = 15

      # Nose, bottom center.
      NOSE_BOTTOM_CENTER = 16

      # Left eye, top boundary.
      LEFT_EYE_TOP_BOUNDARY = 17

      # Left eye, right corner.
      LEFT_EYE_RIGHT_CORNER = 18

      # Left eye, bottom boundary.
      LEFT_EYE_BOTTOM_BOUNDARY = 19

      # Left eye, left corner.
      LEFT_EYE_LEFT_CORNER = 20

      # Right eye, top boundary.
      RIGHT_EYE_TOP_BOUNDARY = 21

      # Right eye, right corner.
      RIGHT_EYE_RIGHT_CORNER = 22

      # Right eye, bottom boundary.
      RIGHT_EYE_BOTTOM_BOUNDARY = 23

      # Right eye, left corner.
      RIGHT_EYE_LEFT_CORNER = 24

      # Left eyebrow, upper midpoint.
      LEFT_EYEBROW_UPPER_MIDPOINT = 25

      # Right eyebrow, upper midpoint.
      RIGHT_EYEBROW_UPPER_MIDPOINT = 26

      # Left ear tragion.
      LEFT_EAR_TRAGION = 27

      # Right ear tragion.
      RIGHT_EAR_TRAGION = 28

      # Left eye pupil.
      LEFT_EYE_PUPIL = 29

      # Right eye pupil.
      RIGHT_EYE_PUPIL = 30

      # Forehead glabella.
      FOREHEAD_GLABELLA = 31

      # Chin gnathion.
      CHIN_GNATHION = 32

      # Chin left gonion.
      CHIN_LEFT_GONION = 33

      # Chin right gonion.
      CHIN_RIGHT_GONION = 34
    end
  end
end

#tilt_angleFloat



166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
# File 'lib/google/cloud/vision/v1/doc/google/cloud/vision/v1/image_annotator.rb', line 166

class FaceAnnotation
  # 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+.
  # @!attribute [rw] type
  #   @return [Google::Cloud::Vision::V1::FaceAnnotation::Landmark::Type]
  #     Face landmark type.
  # @!attribute [rw] position
  #   @return [Google::Cloud::Vision::V1::Position]
  #     Face landmark position.
  class Landmark
    # Face landmark (feature) type.
    # Left and right are defined from the vantage of the viewer of the image
    # without considering mirror projections typical of photos. So, +LEFT_EYE+,
    # typically, is the person's right eye.
    module Type
      # Unknown face landmark detected. Should not be filled.
      UNKNOWN_LANDMARK = 0

      # Left eye.
      LEFT_EYE = 1

      # Right eye.
      RIGHT_EYE = 2

      # Left of left eyebrow.
      LEFT_OF_LEFT_EYEBROW = 3

      # Right of left eyebrow.
      RIGHT_OF_LEFT_EYEBROW = 4

      # Left of right eyebrow.
      LEFT_OF_RIGHT_EYEBROW = 5

      # Right of right eyebrow.
      RIGHT_OF_RIGHT_EYEBROW = 6

      # Midpoint between eyes.
      MIDPOINT_BETWEEN_EYES = 7

      # Nose tip.
      NOSE_TIP = 8

      # Upper lip.
      UPPER_LIP = 9

      # Lower lip.
      LOWER_LIP = 10

      # Mouth left.
      MOUTH_LEFT = 11

      # Mouth right.
      MOUTH_RIGHT = 12

      # Mouth center.
      MOUTH_CENTER = 13

      # Nose, bottom right.
      NOSE_BOTTOM_RIGHT = 14

      # Nose, bottom left.
      NOSE_BOTTOM_LEFT = 15

      # Nose, bottom center.
      NOSE_BOTTOM_CENTER = 16

      # Left eye, top boundary.
      LEFT_EYE_TOP_BOUNDARY = 17

      # Left eye, right corner.
      LEFT_EYE_RIGHT_CORNER = 18

      # Left eye, bottom boundary.
      LEFT_EYE_BOTTOM_BOUNDARY = 19

      # Left eye, left corner.
      LEFT_EYE_LEFT_CORNER = 20

      # Right eye, top boundary.
      RIGHT_EYE_TOP_BOUNDARY = 21

      # Right eye, right corner.
      RIGHT_EYE_RIGHT_CORNER = 22

      # Right eye, bottom boundary.
      RIGHT_EYE_BOTTOM_BOUNDARY = 23

      # Right eye, left corner.
      RIGHT_EYE_LEFT_CORNER = 24

      # Left eyebrow, upper midpoint.
      LEFT_EYEBROW_UPPER_MIDPOINT = 25

      # Right eyebrow, upper midpoint.
      RIGHT_EYEBROW_UPPER_MIDPOINT = 26

      # Left ear tragion.
      LEFT_EAR_TRAGION = 27

      # Right ear tragion.
      RIGHT_EAR_TRAGION = 28

      # Left eye pupil.
      LEFT_EYE_PUPIL = 29

      # Right eye pupil.
      RIGHT_EYE_PUPIL = 30

      # Forehead glabella.
      FOREHEAD_GLABELLA = 31

      # Chin gnathion.
      CHIN_GNATHION = 32

      # Chin left gonion.
      CHIN_LEFT_GONION = 33

      # Chin right gonion.
      CHIN_RIGHT_GONION = 34
    end
  end
end

#under_exposed_likelihoodGoogle::Cloud::Vision::V1::Likelihood



166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
# File 'lib/google/cloud/vision/v1/doc/google/cloud/vision/v1/image_annotator.rb', line 166

class FaceAnnotation
  # 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+.
  # @!attribute [rw] type
  #   @return [Google::Cloud::Vision::V1::FaceAnnotation::Landmark::Type]
  #     Face landmark type.
  # @!attribute [rw] position
  #   @return [Google::Cloud::Vision::V1::Position]
  #     Face landmark position.
  class Landmark
    # Face landmark (feature) type.
    # Left and right are defined from the vantage of the viewer of the image
    # without considering mirror projections typical of photos. So, +LEFT_EYE+,
    # typically, is the person's right eye.
    module Type
      # Unknown face landmark detected. Should not be filled.
      UNKNOWN_LANDMARK = 0

      # Left eye.
      LEFT_EYE = 1

      # Right eye.
      RIGHT_EYE = 2

      # Left of left eyebrow.
      LEFT_OF_LEFT_EYEBROW = 3

      # Right of left eyebrow.
      RIGHT_OF_LEFT_EYEBROW = 4

      # Left of right eyebrow.
      LEFT_OF_RIGHT_EYEBROW = 5

      # Right of right eyebrow.
      RIGHT_OF_RIGHT_EYEBROW = 6

      # Midpoint between eyes.
      MIDPOINT_BETWEEN_EYES = 7

      # Nose tip.
      NOSE_TIP = 8

      # Upper lip.
      UPPER_LIP = 9

      # Lower lip.
      LOWER_LIP = 10

      # Mouth left.
      MOUTH_LEFT = 11

      # Mouth right.
      MOUTH_RIGHT = 12

      # Mouth center.
      MOUTH_CENTER = 13

      # Nose, bottom right.
      NOSE_BOTTOM_RIGHT = 14

      # Nose, bottom left.
      NOSE_BOTTOM_LEFT = 15

      # Nose, bottom center.
      NOSE_BOTTOM_CENTER = 16

      # Left eye, top boundary.
      LEFT_EYE_TOP_BOUNDARY = 17

      # Left eye, right corner.
      LEFT_EYE_RIGHT_CORNER = 18

      # Left eye, bottom boundary.
      LEFT_EYE_BOTTOM_BOUNDARY = 19

      # Left eye, left corner.
      LEFT_EYE_LEFT_CORNER = 20

      # Right eye, top boundary.
      RIGHT_EYE_TOP_BOUNDARY = 21

      # Right eye, right corner.
      RIGHT_EYE_RIGHT_CORNER = 22

      # Right eye, bottom boundary.
      RIGHT_EYE_BOTTOM_BOUNDARY = 23

      # Right eye, left corner.
      RIGHT_EYE_LEFT_CORNER = 24

      # Left eyebrow, upper midpoint.
      LEFT_EYEBROW_UPPER_MIDPOINT = 25

      # Right eyebrow, upper midpoint.
      RIGHT_EYEBROW_UPPER_MIDPOINT = 26

      # Left ear tragion.
      LEFT_EAR_TRAGION = 27

      # Right ear tragion.
      RIGHT_EAR_TRAGION = 28

      # Left eye pupil.
      LEFT_EYE_PUPIL = 29

      # Right eye pupil.
      RIGHT_EYE_PUPIL = 30

      # Forehead glabella.
      FOREHEAD_GLABELLA = 31

      # Chin gnathion.
      CHIN_GNATHION = 32

      # Chin left gonion.
      CHIN_LEFT_GONION = 33

      # Chin right gonion.
      CHIN_RIGHT_GONION = 34
    end
  end
end