image-array-and-histogram-rrsc

Helps in getting array and histogram of a greyscale image. Also, image from the array.


Keywords
histogram, image-processing, pip, python
License
MIT
Install
pip install image-array-and-histogram-rrsc==0.0.2

Documentation

Image array and histogram

This python package helps you to get an array and histogram of a greyscale image. You can also convert an array to greyscale image.

Installation

$ pip install image-array-and-histogram

Functions

  • getImageArray(image_object): Takes an image object and returns image array. The dimensions of the array is the size of the image.
  • getHist(image_array): Takes an image array (of pixels) and returns an array of size 256 as the histogram of the image.
  • getImageFromArray(image_array, width, height): Takes an array, width and height and returns an image formed from the passed array. The dimensions of the image are width*height