Skip to content

Commit

Permalink
fix: removes reference to 'facial hair' from video face samples [(#4052
Browse files Browse the repository at this point in the history
…)](#4052)
  • Loading branch information
telpirion authored and leahecole committed Sep 15, 2023
1 parent d51f7a3 commit 8ab7e68
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions videointelligence/samples/analyze/video_detect_faces_beta.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,7 @@ def detect_faces(local_file_path="path/to/your/video-file.mp4"):
print("\tright : {}".format(box.right))
print("\tbottom: {}".format(box.bottom))

# Attributes include glasses, headwear, facial hair, smiling,
# direction of gaze, etc.
# Attributes include glasses, headwear, smiling, direction of gaze
print("Attributes:")
for attribute in timestamped_object.attributes:
print(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,7 @@ def detect_faces(gcs_uri="gs://YOUR_BUCKET_ID/path/to/your/video.mp4"):
print("\tright : {}".format(box.right))
print("\tbottom: {}".format(box.bottom))

# Attributes include glasses, headwear, facial hair, smiling,
# direction of gaze, etc.
# Attributes include glasses, headwear, smiling, direction of gaze
print("Attributes:")
for attribute in timestamped_object.attributes:
print(
Expand Down

0 comments on commit 8ab7e68

Please sign in to comment.