Applying some image kernel(s) on an image
Project description
Pyimkernel
With this package, You can apply various image kernels such as Blur, Sobel, Scharr and so forth (The list of image kernels is mentioned below) on a grayscale or color image, and show images using the class ApplyKernels in this package to reach a wide range of effects and enhancements in digital images.
Installation
pip install pyimkernel
Usage
from pyimkernel import ApplyKernels
import mnist
import cv2
import os
# Load data
X_train, X_test, y_train, y_test = mnist.train_images(), mnist.test_images(), mnist.train_labels(), mnist.test_labels()
# Create an instance
imkernel = ApplyKernels(random_seed=0)
# Grayscale
# Show image 9
imkernel.imshow(X_train[19], cmap=plt.cm.gray)
# Apply blur kernel on a grayscale image 9
filtered_image = imkernel.apply_filter_on_gray_img(X_train[19], kernel_name='blur')
# Show the filtered image 9
imkernel.imshow(image=filtered_image, cmap='gray')
# Color Scale
# Read the flower image
image1 = cv2.imread(os.path.join('Images', '1.jpg'))
# Show the flower image
imkernel.imshow(image1.reshape(image1.shape[0], -1), cmap='gray', figsize=(20, 10))
# Show the filtered flower image
imkernel.imshow(image=imkernel.apply_filter_on_color_img(image1, kernel_name='laplacian', with_resize=True),
figsize=(7, 6), cmap='gray')
Grayscale Output
Before Applying the blur kernel on a grayscale image 9
After Applying the blur kernel on a grayscale image 9
Color Scale Output
Before Applying the laplacian kernel on a color scale flower image
After Applying the laplacian kernel on a color scale flower image and assigning True to the with_resize parameter
Image kernels
Image kernels are listed below:
- blur
- bottom sobel
- emboss
- identity
- left sobel
- outline
- right sobel
- sharpen
- top sobel
- horizontal edge
- vertical edge
- box blur
- laplacian
- prewitt horizontal edge
- prewitt vertical edge
- high-pass filter
- unsharp masking
- dilate
- soften
- scharr horizontal edge
- scharr vertical edge
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 pyimkernel-0.5.2.tar.gz.
File metadata
- Download URL: pyimkernel-0.5.2.tar.gz
- Upload date:
- Size: 2.1 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae0b6bc49070d9c6885c3a734a9c09e1854c97af9ecb40760237017a215f6814
|
|
| MD5 |
02531078775ff8ad0b4578a28b71ea9d
|
|
| BLAKE2b-256 |
c7d5050e83c1c8547d24ee96da8c38cfbad30aae9c5a1bccd3cb644dca5f6679
|
File details
Details for the file pyimkernel-0.5.2-py3-none-any.whl.
File metadata
- Download URL: pyimkernel-0.5.2-py3-none-any.whl
- Upload date:
- Size: 6.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3efe05f28bdab564dc92519a4845227007ec08de640cb8c004d08e1a1e9e5183
|
|
| MD5 |
da152609f5eb1d83215154cab95c2de2
|
|
| BLAKE2b-256 |
63b804802f99c20bea5475dc7271488fc198b89ce14d29dea9e6e3ad515b119f
|