You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
autofocus_seconds (Optional[int]): If provided, the camera will attempt to focus for the specified number of seconds. Defaults to 3. If `None`, the camera will not attempt to focus at all.
46
-
quality (int): The quality of the photo. Defaults to MEDIUM_QUALITY. May be one of LOW_QUALITY (10), MEDIUM_QUALITY (25), HIGH_QUALITY (50), or FULL_QUALITY (100).
47
-
autofocus_type (str): The type of autofocus. Defaults to AUTOFOCUS_TYPE_AVERAGE. May be one of AUTOFOCUS_TYPE_SPOT, AUTOFOCUS_TYPE_AVERAGE, or AUTOFOCUS_TYPE_CENTER_WEIGHTED.
51
+
quality (Quality): The quality of the photo. Defaults to Quality.MEDIUM.
52
+
autofocus_type (AutofocusType): The type of autofocus. Defaults to AutofocusType.AVERAGE.
filename (str): The name of the file to save the photo. The file will always be saved as a jpeg image regardless of the file extension.
75
85
autofocus_seconds (Optional[int]): If provided, the camera will attempt to focus for the specified number of seconds. Defaults to 3. If `None`, the camera will not attempt to focus at all.
76
-
quality (int): The quality of the photo. Defaults to MEDIUM_QUALITY. May be one of LOW_QUALITY (10), MEDIUM_QUALITY (25), HIGH_QUALITY (50), or FULL_QUALITY (100).
77
-
autofocus_type (str): The type of autofocus. Defaults to AUTOFOCUS_TYPE_AVERAGE. May be one of AUTOFOCUS_TYPE_SPOT, AUTOFOCUS_TYPE_AVERAGE, or AUTOFOCUS_TYPE_CENTER_WEIGHTED.
86
+
quality (Quality): The quality of the photo. Defaults to Quality.MEDIUM.
87
+
autofocus_type (AutofocusType): The type of autofocus. Defaults to AutofocusType.AVERAGE.
"""Process a photo to correct rotation and add metadata.
86
96
87
97
Args:
88
98
image_buffer (bytes): The photo as a byte array.
89
-
autofocus_type (str): The type of autofocus that was used to capture the photo. Should be one of AUTOFOCUS_TYPE_SPOT, AUTOFOCUS_TYPE_AVERAGE, or AUTOFOCUS_TYPE_CENTER_WEIGHTED.
99
+
autofocus_type (AutofocusType): The type of autofocus that was used to capture the photo.
0 commit comments