A Python Library for Image Processing


License
MIT
Install
pip install pypixel==1.0.1

Documentation

pypixel

This is a Python image process library

Feature

  • open and save an Image
  • show an Image
  • reshape an Image
  • convert RGB to Gray
  • convert RGB to Binary

Usage

Import package

from pypixel import Image

Open an Image

img = Image.open("filepath")

Save an Image

img = Image.open("filepath")
...
# Do something to img
...
img.save("filepath")

Show an Image

img = Image.open("filepath")
img.show()

Reshape an Image

img = Image.open("filepath")
img.reshape([height,width])

Convert to gray

img = Image.open("url")
img = img.gray()    # default : Float Algorithm
img = img.gray("F") # Float Algorithm : r*0.3+g*0.59+b*0.11
img = img.gray("G") # Green Only

Convert to binary

img = Image.open("url")
img = img.binary()