With four lines of code, Python can create beautiful pictures!

WBOY
Release: 2023-04-12 21:52:06
forward
1494 people have browsed it

With four lines of code, Python can create beautiful pictures!

When we usually use some image processing software, we often see it adjusting the brightness, contrast, chroma or sharpness of the image. Do you think the underlying implementation of this technology is very advanced?

In fact, the most basic implementation principle requires only a few lines of code to be implemented in Python. After learning it, you can also perform simple image enhancement processing.

Which company is best at image enhancement

There is a class called ImageEnhance in the PIL module in Python. This class is specially used for image enhancement processing. It can not only enhance (or weaken) the brightness of the image, Contrast, chroma, and can also be used to enhance the sharpness of an image.

To use this module, you must first install the PIL library:

pip install pillow

Image enhancement processing

Read image

image = Image.open('girl.jpeg') image.show()
Copy after login

Our original image is an innocent girl holding a tomato:

With four lines of code, Python can create beautiful pictures!

Brightness enhancement

enh_bri = ImageEnhance.Brightness(image) brightness = 4 image_brightened = enh_bri.enhance(brightness) image_brightened.show()
Copy after login

In order to make the contrast obvious, we enhance the brightness of the original image 4 times, look at the effect:

With four lines of code, Python can create beautiful pictures!

The enhanced image is overexposed. Is it a little dazzling?

Chroma enhancement

enh_col = ImageEnhance.Color(image) color = 4 image_colored = enh_col.enhance(color) image_colored.show()
Copy after login

Similarly, we enhance the chroma of the original image by 4 times to see the effect:

With four lines of code, Python can create beautiful pictures!

This The color of the picture is relatively strong, and I suddenly feel like I have changed from a young girl to a promiscuous woman!

Contrast enhancement

enh_con = ImageEnhance.Contrast(image) contrast = 4 image_contrasted = enh_con.enhance(contrast) image_contrasted.show()
Copy after login

Similarly, we enhance the contrast of the original image by 4 times to see the effect:

With four lines of code, Python can create beautiful pictures!

This image The details are highlighted very clearly, a bit like an early movie scene.

Sharpness enhancement

enh_sha = ImageEnhance.Sharpness(image) sharpness = 4 image_sharped = enh_sha.enhance(sharpness) image_sharped.show()
Copy after login

Similarly, we enhance the sharpness of the original image by 4 times to see the effect:

With four lines of code, Python can create beautiful pictures!

Sharp After the degree enhancement, it looks pretty good, and the change is not that obvious compared to the original image.

Summary

After reading this, do you feel it is very simple? The four most basic image enhancement skills can all be implemented with just one line of code. I am enhancing the image here. You can also do the reverse operation. You only need to adjust the coefficient to less than 1 to weaken the image.

Of course, in actual applications, we will definitely comprehensively optimize these dimensions to achieve the effect of beautiful pictures.

The above is the detailed content of With four lines of code, Python can create beautiful pictures!. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:51cto.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!