A tutorial on using the PIL module in Python to blur a picture with Gauss

Source: Internet
Author: User
Tags in python

This article mainly introduces the use of the PiL module in Python to the image of the Gaussian Blur process tutorial, this no graphical interface script code is very simple, the need for friends can refer to the

As you can see from an article, PiL 1.1.5 has built-in Gaussian blur, but is not mentioned in the document, and the PiL Gaussian blur radius is hard coded, although the construction method has the incoming radius parameters, but there is no use (see here), so need to transform themselves, of course, Knowing the reason, the modification is naturally very simple.

In combination with the requirements in the post, Gaussian blur to the local, so you also need to combine the crop and paste methods to implement the local use of filters.

The code is as follows:

?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22-23 #-*-coding:utf-8-*-from PIL import Image, ImageFilter class Mygaussianblur (imagefilter.filter): name = "GAUSSIANBL ur "def __init__" (Self, radius=2, bounds=none): Self.radius = Radius Self.bounds = Bounds def filter (self, image): if s Elf.bounds:clips = Image.crop (self.bounds). Gaussian_blur (Self.radius) image.paste (clips, self.bounds) return image Else:return Image.gaussian_blur (Self.radius) bounds = (130, 280, 230) image = Image.open (' source.jpg ') image = Ima Ge.filter (Mygaussianblur (radius=29, Bounds=bounds)) Image.show ()

You can look at the effect:

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.