Skip to content

Improve ImageEnhance factor documentation #7065

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 4, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Describe the effect of brightness and contrast factors above 1
  • Loading branch information
radarhere committed Apr 4, 2023
commit 4720774a8523e69bbca5b9fb71c1f38c0ba38151
8 changes: 5 additions & 3 deletions docs/reference/ImageEnhance.rst
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,17 @@ method:
This class can be used to control the contrast of an image, similar to the
contrast control on a TV set. An
:ref:`enhancement factor <enhancement-factor>` of 0.0 gives a solid grey
image. A factor of 1.0 gives the original image.
image, a factor of 1.0 gives the original image, and greater values
increase the contrast of the image.

.. py:class:: Brightness(image)

Adjust image brightness.

This class can be used to control the brightness of an image. An
:ref:`enhancement factor <enhancement-factor>` of 0.0 gives a black image.
A factor of 1.0 gives the original image.
:ref:`enhancement factor <enhancement-factor>` of 0.0 gives a black image,
a factor of 1.0 gives the original image, and greater values increase the
brightness of the image.

.. py:class:: Sharpness(image)

Expand Down