Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion vision/cloud-client/face_detection/faces.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def detect_face(face_file, max_results=4):
content = face_file.read()
image = types.Image(content=content)

return client.face_detection(image=image).face_annotations
return client.face_detection(image=image, max_results=max_results).face_annotations
# [END vision_face_detection_tutorial_send_request]


Expand Down