Skip to main content

Image Processing Library

Project description

imgcv

Image Processing Library from scratch using Python.

Documentation Status PyPI version GitHub Workflow Status License

NOTE: This library is just a fun project to learn about image processing and computer vision algorithms from scratch and to enhance my understanding of the concepts.


Various implemenatations of image processing algorithms from scratch using Python has been implemented in this repository as part of Digital Image Processing course at my university.

Installation

$ pip install imgcv

Usage

from PIL import Image
from imgcv.transformation.negative import negative_transform

# Load image
img = Image.open('path/to/image.jpg')

# Convert image to numpy array
img = np.array(img)

# Apply logarithmic transformation
img = negative_transform(img)

# Convert numpy array to image
img = Image.fromarray(img)

# show image
img.show()

Documentation

The official documentation is hosted on Read the Docs: imgcv Documentation

Contributing

Interested in contributing? Check out the contributing guidelines. Please note that this project is released with a Code of Conduct. By contributing to this project, you agree to abide by its terms.

License

imgcv was created by Preet Sojitra. It is licensed under the terms of the MIT license.

Credits

imgcv was created with cookiecutter and the py-pkgs-cookiecutter template.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

imgcv-0.6.0.tar.gz (8.8 kB view hashes)

Uploaded Source

Built Distribution

imgcv-0.6.0-py3-none-any.whl (11.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page