Skip to content

Latest commit

 

History

History
44 lines (33 loc) · 882 Bytes

README.md

File metadata and controls

44 lines (33 loc) · 882 Bytes

python-img-processing

A collection of image processing programs written in Python without using OpenCV or other image processing libraries.

Planned image processing filters:

  • Harris Corner Detection
  • Sobel Edge Detection
  • Gaussian Blur
  • Sharpen
  • Canny Edge Detection
  • Marker Detection

Packages

The Packages required for this project are the following:

  • scipy
  • PIL
  • pylab
  • matplotlib

Install these using pip:

pip install pillow
pip install scipy
pip install matplotlib

Download

Download the files with

git clone https://github.com/dougbrion/python-img-processing.git

Use

Navigate into the directory of the Image Processing task and run the program you desire, for example:

cd Git/python-img-processing/Sobel
python sobel.py

The programs will output the processed result as a JPEG image in the same directory.