Skip to content

Commit 29da228

Browse files
authored
fix: removes reference to 'facial hair' from video face samples (#4052)
1 parent 72cc1b9 commit 29da228

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

video/cloud-client/analyze/video_detect_faces_beta.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,7 @@ def detect_faces(local_file_path="path/to/your/video-file.mp4"):
7070
print("\tright : {}".format(box.right))
7171
print("\tbottom: {}".format(box.bottom))
7272

73-
# Attributes include glasses, headwear, facial hair, smiling,
74-
# direction of gaze, etc.
73+
# Attributes include glasses, headwear, smiling, direction of gaze
7574
print("Attributes:")
7675
for attribute in timestamped_object.attributes:
7776
print(

video/cloud-client/analyze/video_detect_faces_gcs_beta.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,7 @@ def detect_faces(gcs_uri="gs://YOUR_BUCKET_ID/path/to/your/video.mp4"):
6565
print("\tright : {}".format(box.right))
6666
print("\tbottom: {}".format(box.bottom))
6767

68-
# Attributes include glasses, headwear, facial hair, smiling,
69-
# direction of gaze, etc.
68+
# Attributes include glasses, headwear, smiling, direction of gaze
7069
print("Attributes:")
7170
for attribute in timestamped_object.attributes:
7271
print(

0 commit comments

Comments
 (0)