A Python package for image processing including filters and transformations.
Project description
Image Processor PKG
The image_processor_pkg package is designed for image processing, offering functionalities for applying filters and performing transformations on images. The main features include:
- Applying image filters like blur and sharpen.
- Performing transformations such as resizing and rotating images.
Installation
Use the package manager pip to install package_name
pip install image_processor_pkg
Usage
from PIL import Image
from image_processor_pkg.image_filters.blur_filter import apply_blur
from image_processor_pkg.image_transforms.resize_transform import resize_image
# Carregando uma imagem a partir de um arquivo
image_path = 'path_to_image.jpg' # Substitua pelo caminho da sua imagem
image = Image.open(image_path)
# Aplicando um filtro de desfoque (blur)
blurred_image = apply_blur(image, blur_radius=5)
blurred_image.save('blurred_image.jpg') # Salva a imagem desfocada
# Redimensionando a imagem
new_width, new_height = 100, 100
resized_image = resize_image(image, new_width, new_height)
resized_image.save('resized_image.jpg') # Salva a imagem redimensionada
Author
Leticia Martins dos Santos
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file image_processor_pkg-0.0.1.tar.gz.
File metadata
- Download URL: image_processor_pkg-0.0.1.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ded1650217f586e273b0f74b0845251af18ec0b80ac37f5eb8ac2a291686dbb2
|
|
| MD5 |
d669251e55f90fa81197c5569ab08621
|
|
| BLAKE2b-256 |
b2241b995832537d944036f5f201eae752850d1f734973bef464d29a343a2045
|
File details
Details for the file image_processor_pkg-0.0.1-py3-none-any.whl.
File metadata
- Download URL: image_processor_pkg-0.0.1-py3-none-any.whl
- Upload date:
- Size: 4.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
090ec171b4147df6873c7712919ec75ba94fba79dfb3c4324f2f7dc08d8c33eb
|
|
| MD5 |
d9cd6f7d4776862c38281472a39f4099
|
|
| BLAKE2b-256 |
3421aa25f13a3f5579e781c12d1803a03455e692e0090c12404eb13ed80fa397
|