Skip to content

Latest commit

 

History

History
58 lines (49 loc) · 2.62 KB

File metadata and controls

58 lines (49 loc) · 2.62 KB

Image-Blur-using-GaussianBlur-by-Pillow-Image-Manipulation

Project: Image Manipulation
alt text
0x Blur radius

alt text
2.5x Blur Radius

alt text
5x Blur Radius

alt text
10x Blur Radius

alt text
20x Blur Radius

alt text
40x Blur Radius

alt text
80x Blur Radius

alt text
160x Blur Radius

alt text
Image

Follow Up:

#1 This uses the importion of PIL or often refered Pillow Library. PIL is a closed project. It's been forked by developers around the world. Unofficially updated everyday under the name Pillow.

alt text

#2 Installation of Pillow
Note: Pillow and PIL cannot co-exist in the same environment. Before installing Pillow, uninstall PIL.

$ pip uninstall PIL

Get pip here, if not installed on the station: https://pip.pypa.io/en/stable/installing/

#3 Now Reinstall PIL

$ pip install PIL

#4 Install Pillow

For Windows
$ pip install Pillow
Attached Pillow-5.0.0-py3.4-win-amd64.egg in the repo.
OR
$ easy_install Pillow

For Linux
$ sudo pip install Pillow

For Mac OS X
$ brew install libtiff libjpeg webp littlecms
$ sudo pip install Pillow

Adios!