Update src/PIL/ImageOps.py

Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
This commit is contained in:
Navneeth Subramanian 2020-08-07 14:16:07 +09:00 committed by GitHub
parent 665b414033
commit ca3796f4f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -74,7 +74,7 @@ def autocontrast(image, cutoff=0, ignore=None, mask=None):
high ends. Either a tuple of (low, high), or a single high ends. Either a tuple of (low, high), or a single
number for both. number for both.
:param ignore: The background pixel value (use None for no background). :param ignore: The background pixel value (use None for no background).
:param mask: histogram used in contrast operation is computed using pixels :param mask: Histogram used in contrast operation is computed using pixels
within the mask. If no mask is given the entire image is used within the mask. If no mask is given the entire image is used
for histogram computation. for histogram computation.
:return: An image. :return: An image.