Skip to main content

Performs simple image modifications

Project description

ImageModifier

GitHub issues GitHub last commit GitHub release Documentation Status codecov

Created by DALL·E

Created by DALL.E

ImageModifier is a Python package dedicated to providing an intuitive and efficient way to manipulate images. This package focuses on core image processing functions, allowing users to easily modify images through operations like rotating, slicing, adding frame, and adjusting RGB channels. The primary goal is to offer a straightforward way for basic yet powerful image transformations, making it a useful tool for image processing.

Contributors

Chun Li, Celeste Zhao, He Ma, Karan Khubdikar

Motivation

ImageModifier offers a streamlined and intuitive approach, making it highly accessible to a wide range of users, unlike many complex image processing tools that can be overwhelming for beginners and cumbersome for quick tasks. This package caters to both novices seeking an easy entry point into image manipulation and experienced users looking for a tool to perform quick modifications without the overhead of more complex software. With core functionalities like rotating, slicing, adding frames, and selecting RGB channels, ImageModifier simplifies these common tasks, allowing users to achieve their goals with minimal coding effort.

Functions

rotate_90: Rotating an image by 90 degrees clockwise.

add_frame: Adding a frame to an image.

select_channel: Modifying an image with/without a specified RGB channel.

slice_image: Slicing an image into a specified number of horizontal and vertical slices.

Documentation

The package documentation, including installation instructions, usage examples and API details, is available on ReadTheDocs and accessible here.

Installation

For user

Installing the package

$ pip install image_modifier

For developer

Setting up the project

Clone the repository to your local machine:

$ git clone https://github.com/UBC-MDS/image_modifier
$ cd image_modifier/

Create and activate the virtual environment:

$ conda env create -f image_modifier.yml
$ conda activate image_modifier

Install the packages via poetry:

$ poetry install

Running unit tests

To run unit tests to ensure the functionality of the modifications, execute:

$ poetry run pytest

To include code coverage reporting, can also run:

$ poetry run pytest --cov=image_modifier

Usage

Importing libraries and image

The following code can be used to import libraries and an image in python.

>>> import numpy as np
>>> import matplotlib.pyplot as plt
>>> from PIL import Image

>>> image = Image.open("src/ubc.jpeg")  # Example for demonstration
>>> image_ary = np.array(image)

Function usage

Rotate the image by 90 degree clockwise

>>> from image_modifier.rotate_90 import rotate_90

>>> rotated_image = rotate_90(image_ary)
>>> plt.imshow(rotated_image)

Add frame to the image

>>> from image_modifier.add_frame import add_frame

>>> framed_image = add_frame(image_ary, border_size=30, color_name='blue', overlay=True)
>>> plt.imshow(framed_image)

Select color channel

>>> from image_modifier.select_channel import select_channel

>>> colored_image = select_channel(image_ary, 'r')
>>> plt.imshow(colored_image)

Slice the image

>>> from image_modifier.slice_image import slice_image

>>> slices = slice_image(image_ary, horizontal_slices=2, vertical_slices=2)

Usage examples

Detailed usage examples can be found here.

Position within the Python ecosystem

ImageModifier bridges the gap between highly complex image processing libraries and the need for straightforward, user-friendly image manipulation tools. Its focus on core image processing functionalities—such as rotating, slicing, adding frames, and adjusting RGB channels. While Python boasts powerful image processing libraries like OpenCV and PIL/Pillow, these can often be overwhelming for beginners or overkill for simple tasks. ImageModifier's simplicity makes it an attractive starting point for newcomers to image processing, as well as a quick and efficient tool for experienced users needing to perform routine tasks without the overhead of more complex libraries.

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

image_modifier was created by Karan Khubdikar, Celeste Zhao, He Ma, Chun Li. It is licensed under the terms of the MIT license, and more details can be found in the LICENSE.

Credits

image_modifier 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

image_modifier-2.0.6.tar.gz (9.8 kB view details)

Uploaded Source

Built Distribution

image_modifier-2.0.6-py3-none-any.whl (9.6 kB view details)

Uploaded Python 3

File details

Details for the file image_modifier-2.0.6.tar.gz.

File metadata

  • Download URL: image_modifier-2.0.6.tar.gz
  • Upload date:
  • Size: 9.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.7

File hashes

Hashes for image_modifier-2.0.6.tar.gz
Algorithm Hash digest
SHA256 d82c77b0849ae5101ba311d516629ac5cb1fd4a183019be7c099fc4fba7b8508
MD5 6b99a023fb5e6e9b6e8a2a9daaac4400
BLAKE2b-256 b725fb7429308df9fd26908b9ab1deaf24ab4f610d5bc5c1b0cee6082586f612

See more details on using hashes here.

File details

Details for the file image_modifier-2.0.6-py3-none-any.whl.

File metadata

File hashes

Hashes for image_modifier-2.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 c86f557427c1363fb7b3f7bf9b6e56186480702d9ce6698f1df8a799465ab84b
MD5 1feae000c77b8b8e36776ad744b788d6
BLAKE2b-256 b90c3b994ed5ee4115f6c6bf1808a0c924512a92b30e64b51077b8a0b0175cac

See more details on using hashes here.

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