mousseinov / Image-Processing-Library

Library for Image Processing

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

IPL PyPI

A library of Image Processing tools that are wrapped around the PIL library in Python

Features

  • Downsampling
  • Upsampling
  • Blurring an image using the Discrete Fourier Transform
  • Blurring an image using the Discrete Cosine Transform
  • Histogram Equalization

Installation

To install IPL from source, first clone the repository and then run: python setup.py install

A Simple Example

from IPL import IP
I = IP.ImageProcess()
I.readImage("img.png")
I_blurred = I.dftTruncate(0.25)
I_blurred.showImage()

alt text

About

Library for Image Processing


Languages

Language:Python 100.0%